signal-bug fixed; refs #115

This commit is contained in:
Marc Wäckerlin
2012-03-05 13:40:02 +00:00
parent ecdfe066e8
commit c47ade3a9f
2 changed files with 6 additions and 6 deletions

View File

@@ -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;