diff options
| author | 2007-01-19 02:11:09 +0000 | |
|---|---|---|
| committer | 2007-01-19 02:11:09 +0000 | |
| commit | ecd49ed1192c79a3b55cdc4130bec1d4182f71b4 (patch) | |
| tree | 2ffd5b617136b4296e25eb3c66a5cd27180f21c8 /src/modules/popupeditor/popupeditor.cpp | |
| parent | *AUTOMATICALLY* updated KVI_SOURCES_DATE variable (diff) | |
| download | KVIrc-ecd49ed1192c79a3b55cdc4130bec1d4182f71b4.tar.gz KVIrc-ecd49ed1192c79a3b55cdc4130bec1d4182f71b4.tar.bz2 KVIrc-ecd49ed1192c79a3b55cdc4130bec1d4182f71b4.zip | |
More Qt 4.x port
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@195 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/popupeditor/popupeditor.cpp')
| -rw-r--r-- | src/modules/popupeditor/popupeditor.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/popupeditor/popupeditor.cpp b/src/modules/popupeditor/popupeditor.cpp index 36a9a28cd..496f34e47 100644 --- a/src/modules/popupeditor/popupeditor.cpp +++ b/src/modules/popupeditor/popupeditor.cpp @@ -46,7 +46,7 @@ #include <qlayout.h> #include <qlabel.h> #include <qtooltip.h> -#include <qasciidict.h> +#include "kvi_asciidict.h" #include <qpushbutton.h> #include <qvbox.h> @@ -1059,10 +1059,10 @@ void KviPopupEditor::oneTimeSetup() if(m_bOneTimeSetupDone)return; m_bOneTimeSetupDone = true; - const QDict<KviKvsPopupMenu> * a = KviKvsPopupManager::instance()->popupDict(); + const KviDict<KviKvsPopupMenu> * a = KviKvsPopupManager::instance()->popupDict(); if(!a)return; - QDictIterator<KviKvsPopupMenu> it(*a); + KviDictIterator<KviKvsPopupMenu> it(*a); KviMenuListViewItem * item; @@ -1247,7 +1247,7 @@ void KviPopupEditor::commit() KviMenuListViewItem * it = (KviMenuListViewItem *)m_pListView->firstChild(); // Copy the original popup dict - QDict<KviKvsPopupMenu> copy(*(KviKvsPopupManager::instance()->popupDict())); + KviDict<KviKvsPopupMenu> copy(*(KviKvsPopupManager::instance()->popupDict())); copy.setAutoDelete(false); while(it) @@ -1262,7 +1262,7 @@ void KviPopupEditor::commit() // the remaining elements in the copy need to be removed from // the "new" dictionary (they are no longer used) - QDictIterator<KviKvsPopupMenu> iter(copy); + KviDictIterator<KviKvsPopupMenu> iter(copy); while(iter.current()) { |
