diff options
| author | 2008-08-31 11:06:37 +0000 | |
|---|---|---|
| committer | 2008-08-31 11:06:37 +0000 | |
| commit | 0e21d58d64c10af95db03f789559d1f43fac863d (patch) | |
| tree | b8a197e69ff9c402d0d640e191b85d773195a340 /src/modules/toolbareditor | |
| parent | fix (diff) | |
| download | KVIrc-0e21d58d64c10af95db03f789559d1f43fac863d.tar.gz KVIrc-0e21d58d64c10af95db03f789559d1f43fac863d.tar.bz2 KVIrc-0e21d58d64c10af95db03f789559d1f43fac863d.zip | |
upported fix for #227
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2368 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/toolbareditor')
| -rw-r--r-- | src/modules/toolbareditor/toolbareditor.cpp | 5 | ||||
| -rw-r--r-- | src/modules/toolbareditor/toolbareditor.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/modules/toolbareditor/toolbareditor.cpp b/src/modules/toolbareditor/toolbareditor.cpp index ad338abb5..dcf7e4e23 100644 --- a/src/modules/toolbareditor/toolbareditor.cpp +++ b/src/modules/toolbareditor/toolbareditor.cpp @@ -541,3 +541,8 @@ void KviCustomizeToolBarsDialog::closeEvent(QCloseEvent * e) e->ignore(); delete this; } + +void KviCustomizeToolBarsDialog::reject() +{ + cleanup(); +} diff --git a/src/modules/toolbareditor/toolbareditor.h b/src/modules/toolbareditor/toolbareditor.h index c99354950..9f1479359 100644 --- a/src/modules/toolbareditor/toolbareditor.h +++ b/src/modules/toolbareditor/toolbareditor.h @@ -65,6 +65,7 @@ protected slots: void renameToolBar(); void exportToolBar(); void currentToolBarChanged(); + virtual void reject(); }; |
