diff options
Diffstat (limited to 'muse2')
-rw-r--r-- | muse2/ChangeLog | 1 | ||||
-rw-r--r-- | muse2/muse/widgets/tools.cpp | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/muse2/ChangeLog b/muse2/ChangeLog index 461c40e7..32e0be1f 100644 --- a/muse2/ChangeLog +++ b/muse2/ChangeLog @@ -1,5 +1,6 @@ 21.10.2010 Toolbar1 usage of Q3ListBox changed to QTableWidget. (p4.0.3 Tim) More Toolbar1 fixes. (p4.0.4 Tim) + Fixed widgets/tools.cpp EditToolBar::EditToolBar connect Q3Action. (p4.0.5 Tim) 20.10.2010 * Fixed: cmake should work now. (T356) - Changed the QT4_WRAP_UI3 macro to generate <filename>.h instead of ui_<filename>.h diff --git a/muse2/muse/widgets/tools.cpp b/muse2/muse/widgets/tools.cpp index 7816f632..bb6ba334 100644 --- a/muse2/muse/widgets/tools.cpp +++ b/muse2/muse/widgets/tools.cpp @@ -87,7 +87,8 @@ EditToolBar::EditToolBar(Q3MainWindow* parent, int tools, const char*) ++n; } action->addTo(this); - connect(action, SIGNAL(selected(Q3Action*)), SLOT(toolChanged(QAction*))); + //connect(action, SIGNAL(selected(Q3Action*)), SLOT(toolChanged(QAction*))); + connect(action, SIGNAL(selected(Q3Action*)), SLOT(toolChanged(Q3Action*))); // p4.0.5 } //--------------------------------------------------------- |