diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:14:09 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:14:09 +0000 |
commit | 00cef9840e19aae7a7541da60d1b60190cb5afec (patch) | |
tree | 5fd6aeed14f01486335c754dd96bae31203cecd2 /konq-plugins/sidebar/metabar | |
parent | 7346aee26bf190a7e70333c40fab4caca847cd27 (diff) | |
download | tdeaddons-00cef9840e19aae7a7541da60d1b60190cb5afec.tar.gz tdeaddons-00cef9840e19aae7a7541da60d1b60190cb5afec.zip |
TQt conversion fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1158415 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konq-plugins/sidebar/metabar')
-rw-r--r-- | konq-plugins/sidebar/metabar/src/configdialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/konq-plugins/sidebar/metabar/src/configdialog.cpp b/konq-plugins/sidebar/metabar/src/configdialog.cpp index 047437e..3d4850f 100644 --- a/konq-plugins/sidebar/metabar/src/configdialog.cpp +++ b/konq-plugins/sidebar/metabar/src/configdialog.cpp @@ -75,7 +75,7 @@ ConfigDialog::ConfigDialog(TQWidget *parent, const char *name) : TQDialog(parent //general page config->setGroup("General"); - TQWidget *general = new QWidget; + TQWidget *general = new TQWidget; TQGroupBox *entries_group = new TQGroupBox(2, Qt::Horizontal, i18n("Items"), general); entries_group->setSizePolicy(TQSizePolicy::Preferred, TQSizePolicy::Preferred); @@ -122,7 +122,7 @@ ConfigDialog::ConfigDialog(TQWidget *parent, const char *name) : TQDialog(parent loadThemes(); //link page - TQWidget *links = new QWidget; + TQWidget *links = new TQWidget; link_create = new KPushButton(i18n("New..."), links); connect(link_create, TQT_SIGNAL(clicked()), this, TQT_SLOT(createLink())); @@ -152,7 +152,7 @@ ConfigDialog::ConfigDialog(TQWidget *parent, const char *name) : TQDialog(parent connect(link_list, TQT_SIGNAL(doubleClicked(TQListViewItem*)), this, TQT_SLOT(editLink(TQListViewItem*))); connect(link_list, TQT_SIGNAL(selectionChanged()), TQT_SLOT(updateArrows())); - TQWidget *actionPage = new QWidget; + TQWidget *actionPage = new TQWidget; actionSelector = new KActionSelector(actionPage); loadAvailableActions(); |