From 20a21559aff7c8a8d2a2e6f2bf97b66cc0b9a3b2 Mon Sep 17 00:00:00 2001 From: uwolfer Date: Sun, 8 Jun 2008 18:39:34 +0000 Subject: [PATCH] * icon fixes * QInputDialog -> KInputDialog git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/KDE/kdenetwork@818534 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kopete/protocols/jabber/ui/privacydlg.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kopete/protocols/jabber/ui/privacydlg.cpp b/kopete/protocols/jabber/ui/privacydlg.cpp index 8ff82a320..65461405a 100644 --- a/kopete/protocols/jabber/ui/privacydlg.cpp +++ b/kopete/protocols/jabber/ui/privacydlg.cpp @@ -20,7 +20,7 @@ */ #include -#include +#include #include #include "privacydlg.h" @@ -74,8 +74,8 @@ PrivacyDlg::PrivacyDlg(JabberAccount* acc, QWidget* parent) : KDialog(parent), a ui_.pb_remove->setIcon(KIcon("list-remove")); ui_.pb_up->setIcon(KIcon("arrow-up")); ui_.pb_down->setIcon(KIcon("arrow-down")); - ui_.pb_edit->setIcon(KIcon("edit")); - ui_.pb_apply->setIcon(KIcon("dialog-apply")); + ui_.pb_edit->setIcon(KIcon("edit-rename")); + ui_.pb_apply->setIcon(KIcon("dialog-ok-apply")); setWidgetsEnabled(false); @@ -308,7 +308,7 @@ void PrivacyDlg::newList() bool ok = false; QString name; while (!done) { - name = QInputDialog::getText(this, i18n("New List"), i18n("Enter the name of the new list:"), QLineEdit::Normal, "", &ok); + name = KInputDialog::getText(i18n("New List"), i18n("Enter the name of the new list:"), QString(), &ok, this); if (!ok) { done = true; } -- 2.11.4.GIT