summaryrefslogtreecommitdiff
path: root/noncore/apps/tinykate
authorllornkcor <llornkcor>2004-12-28 06:35:27 (UTC)
committer llornkcor <llornkcor>2004-12-28 06:35:27 (UTC)
commit97a3d431ba9e33a3e256955755b23a55a9a9ea05 (patch) (side-by-side diff)
tree05ba989cc0127f5b1c57e125cb847de1513ad566 /noncore/apps/tinykate
parent02395040e422485ceb2fa435a3fb30879d5f3df2 (diff)
downloadopie-97a3d431ba9e33a3e256955755b23a55a9a9ea05.zip
opie-97a3d431ba9e33a3e256955755b23a55a9a9ea05.tar.gz
opie-97a3d431ba9e33a3e256955755b23a55a9a9ea05.tar.bz2
patch fixing #1500 - wrong disconnect, from Seneca
Diffstat (limited to 'noncore/apps/tinykate') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/tinykate/mainwindow/tinykate.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/noncore/apps/tinykate/mainwindow/tinykate.cpp b/noncore/apps/tinykate/mainwindow/tinykate.cpp
index 30c07fc..8d19c71 100644
--- a/noncore/apps/tinykate/mainwindow/tinykate.cpp
+++ b/noncore/apps/tinykate/mainwindow/tinykate.cpp
@@ -226,11 +226,11 @@ void TinyKate::slotCurrentChanged( QWidget * view)
if (currentView)
{
- disconnect(editCopy,SIGNAL(activated()),currentView,SLOT(copy()));
- disconnect(editCut,SIGNAL(activated()),currentView,SLOT(cut()));
- disconnect(editPaste,SIGNAL(activated()),currentView,SLOT(paste()));
- disconnect(editUndo,SIGNAL(activated()),currentView,SLOT(undo()));
- disconnect(editRedo,SIGNAL(activated()),currentView,SLOT(redo()));
+ disconnect(editCopy,SIGNAL(clicked()),currentView,SLOT(copy()));
+ disconnect(editCut,SIGNAL(clicked()),currentView,SLOT(cut()));
+ disconnect(editPaste,SIGNAL(clicked()),currentView,SLOT(paste()));
+ disconnect(editUndo,SIGNAL(clicked()),currentView,SLOT(undo()));
+ disconnect(editRedo,SIGNAL(clicked()),currentView,SLOT(redo()));
disconnect(viewIncFontSizes,SIGNAL(activated()), currentView,SLOT(slotIncFontSizes()));
disconnect(viewDecFontSizes,SIGNAL(activated()), currentView,SLOT(slotDecFontSizes()));
disconnect(hlmenu,SIGNAL(activated(int)), currentView,SLOT(setHl(int)));