diff options
| author | Daniel Molkentin <[email protected]> | 2007-03-22 21:29:06 +0000 |
|---|---|---|
| committer | Daniel Molkentin <[email protected]> | 2007-03-22 21:29:06 +0000 |
| commit | 74b2f2b8a9173255baad081997b652455458230a (patch) | |
| tree | f1680bb939d747dd54d08fd7d688b0f5481c4430 /src/protocolcombo.cpp | |
| parent | ae338af47408467c6ba481ff015ef18ad401f046 (diff) | |
less Qt 3 compant classes
svn path=/trunk/KDE/kdebase/apps/; revision=645548
Diffstat (limited to 'src/protocolcombo.cpp')
| -rw-r--r-- | src/protocolcombo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocolcombo.cpp b/src/protocolcombo.cpp index 94f4e359c..3fbf3de55 100644 --- a/src/protocolcombo.cpp +++ b/src/protocolcombo.cpp @@ -17,7 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * ***************************************************************************/ -#include <q3popupmenu.h> +#include <QMenu> #include <kdebug.h> #include <kprotocolinfo.h> @@ -34,7 +34,7 @@ ProtocolCombo::ProtocolCombo(const QString& protocol, UrlNavigator* parent) qSort(m_protocols); QStringList::iterator it = m_protocols.begin(); QStringList::iterator itEnd = m_protocols.end(); - Q3PopupMenu* menu = new Q3PopupMenu(this); + QMenu* menu = new QMenu(this); while (it != itEnd) { //kDebug() << "info for " << *it << " " |
