signal-bug fixed; refs #115
This commit is contained in:
@@ -148,10 +148,10 @@ class Browser: public QMainWindow, protected Ui::Browser {
|
||||
}
|
||||
_editbookmarks =
|
||||
std::auto_ptr<EditBookmarks>(new EditBookmarks(combo, this));
|
||||
assert(connect(_editbookmarks.get(), SIGNAL(startEdit()),
|
||||
actionAddBookmark, SLOT(setDisabled())));
|
||||
assert(connect(_editbookmarks.get(), SIGNAL(endEdit()),
|
||||
actionAddBookmark, SLOT(setEnabled())));
|
||||
assert(connect(_editbookmarks.get(), SIGNAL(startEdit(bool)),
|
||||
actionAddBookmark, SLOT(setDisabled(bool))));
|
||||
assert(connect(_editbookmarks.get(), SIGNAL(endEdit(bool)),
|
||||
actionAddBookmark, SLOT(setEnabled(bool))));
|
||||
} else {
|
||||
QLineEdit* label(new QLineEdit(_toolbar));
|
||||
_url = label;
|
||||
|
||||
Reference in New Issue
Block a user