From 69cac65817d949cda2672ec4f0aa73d5e66a0ba1 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 22 Jun 2011 00:30:31 +0000 Subject: TQt4 port kdenetwork This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1237912 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ksirc/KSPrefs/ksprefs.cpp | 4 +- ksirc/KSPrefs/ksprefs.h | 3 +- ksirc/KSPrefs/page_autoconnect.cpp | 44 +++++----- ksirc/KSPrefs/page_autoconnect.h | 3 +- ksirc/KSPrefs/page_autoconnectbase.ui | 84 +++++++++--------- ksirc/KSPrefs/page_colors.cpp | 16 ++-- ksirc/KSPrefs/page_colors.h | 3 +- ksirc/KSPrefs/page_colorsbase.ui | 156 +++++++++++++++++----------------- ksirc/KSPrefs/page_font.cpp | 10 +-- ksirc/KSPrefs/page_font.h | 9 +- ksirc/KSPrefs/page_general.cpp | 8 +- ksirc/KSPrefs/page_general.h | 3 +- ksirc/KSPrefs/page_generalbase.ui | 70 +++++++-------- ksirc/KSPrefs/page_irccolors.cpp | 2 +- ksirc/KSPrefs/page_irccolors.h | 3 +- ksirc/KSPrefs/page_irccolorsbase.ui | 152 ++++++++++++++++----------------- ksirc/KSPrefs/page_looknfeel.cpp | 2 +- ksirc/KSPrefs/page_looknfeel.h | 3 +- ksirc/KSPrefs/page_looknfeelbase.ui | 50 +++++------ ksirc/KSPrefs/page_rmbmenu.cpp | 2 +- ksirc/KSPrefs/page_rmbmenu.h | 3 +- ksirc/KSPrefs/page_rmbmenubase.ui | 48 +++++------ ksirc/KSPrefs/page_servchan.cpp | 2 +- ksirc/KSPrefs/page_servchan.h | 3 +- ksirc/KSPrefs/page_servchanbase.ui | 28 +++--- ksirc/KSPrefs/page_shortcuts.cpp | 4 +- ksirc/KSPrefs/page_shortcuts.h | 3 +- ksirc/KSPrefs/page_shortcutsbase.ui | 12 +-- ksirc/KSPrefs/page_startup.cpp | 8 +- ksirc/KSPrefs/page_startup.h | 3 +- ksirc/KSPrefs/page_startupbase.ui | 28 +++--- 31 files changed, 390 insertions(+), 379 deletions(-) (limited to 'ksirc/KSPrefs') diff --git a/ksirc/KSPrefs/ksprefs.cpp b/ksirc/KSPrefs/ksprefs.cpp index 40ccc56f..6deb550c 100644 --- a/ksirc/KSPrefs/ksprefs.cpp +++ b/ksirc/KSPrefs/ksprefs.cpp @@ -26,10 +26,10 @@ #include "page_looknfeel.h" #include "page_shortcuts.h" -KSPrefs::KSPrefs(TQWidget * parent, const char * name): +KSPrefs::KSPrefs(TQWidget * tqparent, const char * name): KDialogBase(KDialogBase::IconList, i18n("Configure KSirc"), KDialogBase::Help | KDialogBase::Ok | KDialogBase::Apply | KDialogBase::Cancel | KDialogBase::Default, - KDialogBase::Ok, parent, name) + KDialogBase::Ok, tqparent, name) { setWFlags( getWFlags() | WDestructiveClose ); TQFrame *itemLooknFeel= addPage( i18n( "Look and Feel" ), i18n( "Controls how kSirc looks" ), BarIcon( "ksirc", KIcon::SizeMedium ) ); diff --git a/ksirc/KSPrefs/ksprefs.h b/ksirc/KSPrefs/ksprefs.h index 1e5beaf0..51ae6562 100644 --- a/ksirc/KSPrefs/ksprefs.h +++ b/ksirc/KSPrefs/ksprefs.h @@ -29,8 +29,9 @@ class KSPrefs : public KDialogBase { Q_OBJECT + TQ_OBJECT public: - KSPrefs(TQWidget * parent = 0, const char * name = 0); + KSPrefs(TQWidget * tqparent = 0, const char * name = 0); ~KSPrefs(); public slots: diff --git a/ksirc/KSPrefs/page_autoconnect.cpp b/ksirc/KSPrefs/page_autoconnect.cpp index c9ab585d..9a6e61ab 100644 --- a/ksirc/KSPrefs/page_autoconnect.cpp +++ b/ksirc/KSPrefs/page_autoconnect.cpp @@ -26,7 +26,7 @@ #define PASS 2 #define SSL 3 -PageAutoConnect::PageAutoConnect( TQWidget *parent, const char *name ) : PageAutoConnectBase( parent, name) +PageAutoConnect::PageAutoConnect( TQWidget *tqparent, const char *name ) : PageAutoConnectBase( tqparent, name) { KLVAutoConnect->setSorting( 0 ); //KLVAutoConnect->header()->hide(); @@ -59,7 +59,7 @@ void PageAutoConnect::saveConfig() if(it->text(SSL).length() > 0) server += " (SSL)"; if(it->text(PASS).length() > 0) - server += TQString(" (pass: %1)").arg(it->text(PASS)); + server += TQString(" (pass: %1)").tqarg(it->text(PASS)); servers << server; @@ -73,7 +73,7 @@ void PageAutoConnect::saveConfig() channel = ch->text(NAME); if(ch->text(PK).length() > 0) - channel += TQString(" (key: %1)").arg(ch->text(PK)); + channel += TQString(" (key: %1)").tqarg(ch->text(PK)); channels << channel; @@ -101,8 +101,8 @@ void PageAutoConnect::readConfig() TQStringList channels = conf->readListEntry(*ser); TQString server = *ser; TQString port = "6667"; - TQString ssl = TQString::null; - TQString pass = TQString::null; + TQString ssl = TQString(); + TQString pass = TQString(); TQRegExp rx("(.+) \\(SSL\\)(.*)"); if(rx.search(server) >= 0){ @@ -127,7 +127,7 @@ void PageAutoConnect::readConfig() TQStringList::ConstIterator chan = channels.begin(); for(; chan != channels.end(); chan++){ TQString channel = *chan; - TQString key = TQString::null; + TQString key = TQString(); TQRegExp crx("(.+) \\(key: (\\S+)\\)"); if(crx.search(channel) >= 0){ channel = crx.cap(1); @@ -157,7 +157,7 @@ void PageAutoConnect::add_pressed() s = KLVAutoConnect->selectedItem(); if(!s){ /* new item */ TQString server = ServerLE->text(); - TQString ssl = TQString::null; + TQString ssl = TQString(); TQString port; port.setNum(PortKI->value()); @@ -170,25 +170,25 @@ void PageAutoConnect::add_pressed() KLVAutoConnect->setCurrentItem(s); } else { /* update the existing one */ - TQListViewItem *parent; + TQListViewItem *tqparent; TQListViewItem *child; - if(s->parent()){ - parent = s->parent(); + if(s->tqparent()){ + tqparent = s->tqparent(); child = s; } else { - parent = s; + tqparent = s; child = 0x0; } - parent->setText(NAME, ServerLE->text()); - parent->setText(PK, TQString("%1").arg(PortKI->value())); - parent->setText(PASS, PassLE->text()); + tqparent->setText(NAME, ServerLE->text()); + tqparent->setText(PK, TQString("%1").tqarg(PortKI->value())); + tqparent->setText(PASS, PassLE->text()); if(sslCB->isChecked()) - parent->setText(SSL, i18n("SSL")); + tqparent->setText(SSL, i18n("SSL")); else - parent->setText(SSL, TQString::null); + tqparent->setText(SSL, TQString()); if(child){ child->setText(NAME, ChannelLE->text()); @@ -197,7 +197,7 @@ void PageAutoConnect::add_pressed() else { if(ChannelLE->text().length() > 0){ fnd = 0; - TQListViewItem *c = parent->firstChild(); + TQListViewItem *c = tqparent->firstChild(); for( ; c != 0 && fnd == 0; c = c->nextSibling()){ if(c->text(NAME) == ChannelLE->text()){ c->setText(PK, KeyLE->text()); @@ -205,7 +205,7 @@ void PageAutoConnect::add_pressed() } } if(fnd == 0){ - new TQListViewItem(parent, ChannelLE->text(), KeyLE->text()); + new TQListViewItem(tqparent, ChannelLE->text(), KeyLE->text()); } } } @@ -260,16 +260,16 @@ void PageAutoConnect::delete_pressed() void PageAutoConnect::kvl_clicked(TQListViewItem *it) { if(it != 0){ - if(it->parent() != 0){ + if(it->tqparent() != 0){ ChannelLE->setText(it->text(NAME)); KeyLE->setText(it->text(PK)); AddPB->setText(i18n("&Update")); /* - * Move it to the parent to setup parent/server + * Move it to the tqparent to setup tqparent/server * values. This save writing this code * in two places. */ - it = it->parent(); + it = it->tqparent(); } else { AddPB->setText(i18n("&Update/Add")); @@ -277,7 +277,7 @@ void PageAutoConnect::kvl_clicked(TQListViewItem *it) KeyLE->clear(); } - if(it->parent() == 0){ + if(it->tqparent() == 0){ ServerLE->setText(it->text(NAME)); PortKI->setValue(it->text(PK).toInt()); PassLE->setText(it->text(PASS)); diff --git a/ksirc/KSPrefs/page_autoconnect.h b/ksirc/KSPrefs/page_autoconnect.h index 04b5b821..cce0f810 100644 --- a/ksirc/KSPrefs/page_autoconnect.h +++ b/ksirc/KSPrefs/page_autoconnect.h @@ -7,9 +7,10 @@ class PageAutoConnect : public PageAutoConnectBase { Q_OBJECT + TQ_OBJECT public: - PageAutoConnect( TQWidget* parent = 0, const char* name = 0); + PageAutoConnect( TQWidget* tqparent = 0, const char* name = 0); ~PageAutoConnect(); void saveConfig(); diff --git a/ksirc/KSPrefs/page_autoconnectbase.ui b/ksirc/KSPrefs/page_autoconnectbase.ui index 71aafb49..815598ba 100644 --- a/ksirc/KSPrefs/page_autoconnectbase.ui +++ b/ksirc/KSPrefs/page_autoconnectbase.ui @@ -1,6 +1,6 @@ PageAutoConnectBase - + PageAutoConnectBase @@ -77,7 +77,7 @@ true - + groupBox12 @@ -88,23 +88,23 @@ unnamed - + - layout13 + tqlayout13 unnamed - + - layout9 + tqlayout9 unnamed - + textLabelSever @@ -112,22 +112,22 @@ Server: - + ServerLE - + - layout12 + tqlayout12 unnamed - + textLabelPort @@ -145,15 +145,15 @@ - + - layout11 + tqlayout11 unnamed - + textLabelPass @@ -161,22 +161,22 @@ Server password: - + PassLE - + - layout15 + tqlayout15 unnamed - + textLabelSSL @@ -187,7 +187,7 @@ PortKI - + sslCB @@ -199,23 +199,23 @@ - + - layout12 + tqlayout12 unnamed - + - layout3 + tqlayout3 unnamed - + textLabelChan @@ -226,22 +226,22 @@ ChannelLE - + ChannelLE - + - layout9 + tqlayout9 unnamed - + textLabelKey @@ -252,7 +252,7 @@ KeyLE - + KeyLE @@ -261,15 +261,15 @@ - + - layout17 + tqlayout17 unnamed - + NewPB @@ -277,7 +277,7 @@ &New - + AddPB @@ -285,7 +285,7 @@ &Add - + DeletePB @@ -356,9 +356,9 @@ KLVAutoConnect - clicked(QListViewItem*) + clicked(TQListViewItem*) PageAutoConnectBase - kvl_clicked(QListViewItem*) + kvl_clicked(TQListViewItem*) @@ -373,16 +373,16 @@ AddPB DeletePB - + item_changed() new_pressed() add_pressed() delete_pressed() - KLVAutoConnect_clicked(QListViewItem*) - kcl_clicked(QListViewItem *) - kvl_clicked(QListViewItem*) - - + KLVAutoConnect_clicked(TQListViewItem*) + kcl_clicked(TQListViewItem *) + kvl_clicked(TQListViewItem*) + + klistview.h knuminput.h diff --git a/ksirc/KSPrefs/page_colors.cpp b/ksirc/KSPrefs/page_colors.cpp index e7b36af4..a31acb64 100644 --- a/ksirc/KSPrefs/page_colors.cpp +++ b/ksirc/KSPrefs/page_colors.cpp @@ -19,7 +19,7 @@ #include #include -PageColors::PageColors( TQWidget *parent, const char *name ) : PageColorsBase( parent, name) +PageColors::PageColors( TQWidget *tqparent, const char *name ) : PageColorsBase( tqparent, name) { changing = 0; m_dcol.setAutoDelete(true); @@ -162,13 +162,13 @@ void PageColors::readConfig( const KSOColors *opts ) conf->setGroup("ColourSchemes"); themeLB->clear(); TQStringList names = conf->readListEntry("Names"); - if(names.contains("Custom")){ - names.remove(names.find("Custom")); + if(names.tqcontains("Custom")){ + names.remove(names.tqfind("Custom")); } names.prepend("Custom"); themeLB->insertStringList(names); - if(themeLB->findItem(ksopts->colourTheme, Qt::ExactMatch)) - themeLB->setCurrentItem(themeLB->findItem(ksopts->colourTheme, Qt::ExactMatch)); + if(themeLB->tqfindItem(ksopts->colourTheme, TQt::ExactMatch)) + themeLB->setCurrentItem(themeLB->tqfindItem(ksopts->colourTheme, TQt::ExactMatch)); else themeLB->setCurrentItem(0); themeLE->setText(themeLB->currentText()); @@ -243,7 +243,7 @@ void PageColors::themeAddPB_clicked() kdDebug(5008) << "Got add: " << themeLB->currentText() << endl; - m_dcol.replace(name, new KSOColors()); + m_dcol.tqreplace(name, new KSOColors()); m_dcol[name]->backgroundColor = backCBtn->color(); m_dcol[name]->selBackgroundColor = selBackCBtn->color(); @@ -257,11 +257,11 @@ void PageColors::themeAddPB_clicked() m_dcol[name]->nickForeground = nickFGCBtn->color(); m_dcol[name]->nickBackground = nickBGCBtn->color(); - if(themeLB->findItem(name, Qt::ExactMatch) == 0){ + if(themeLB->tqfindItem(name, TQt::ExactMatch) == 0){ themeLB->insertItem(name); } - themeLB->setCurrentItem(themeLB->findItem(name, Qt::ExactMatch)); + themeLB->setCurrentItem(themeLB->tqfindItem(name, TQt::ExactMatch)); } diff --git a/ksirc/KSPrefs/page_colors.h b/ksirc/KSPrefs/page_colors.h index 5401aecc..4b2313e4 100644 --- a/ksirc/KSPrefs/page_colors.h +++ b/ksirc/KSPrefs/page_colors.h @@ -20,9 +20,10 @@ class PageColors : public PageColorsBase { Q_OBJECT + TQ_OBJECT public: - PageColors( TQWidget *parent = 0, const char *name = 0 ); + PageColors( TQWidget *tqparent = 0, const char *name = 0 ); ~PageColors(); void saveConfig(); diff --git a/ksirc/KSPrefs/page_colorsbase.ui b/ksirc/KSPrefs/page_colorsbase.ui index 498c9c23..cffcc4cc 100644 --- a/ksirc/KSPrefs/page_colorsbase.ui +++ b/ksirc/KSPrefs/page_colorsbase.ui @@ -1,6 +1,6 @@ PageColorsBase - + PageColorsBase @@ -22,11 +22,11 @@ 0 - + tabWidget2 - + tab @@ -37,7 +37,7 @@ unnamed - + chatColorsGB @@ -54,7 +54,7 @@ 6 - + chanMsgLabel @@ -65,7 +65,7 @@ chanMsgCBtn - + genericTextLabel @@ -76,7 +76,7 @@ genericTextCBtn - + errorLabel @@ -87,7 +87,7 @@ errorCBtn - + infoLabel @@ -98,7 +98,7 @@ infoCBtn - + backgrndLabel @@ -113,7 +113,7 @@ genericTextCBtn - + 60 32767 @@ -123,7 +123,7 @@ - + backgrndLabel_2 @@ -144,7 +144,7 @@ Expanding - + 20 20 @@ -155,7 +155,7 @@ linkCBtn - + 60 32767 @@ -169,7 +169,7 @@ backCBtn - + 60 32767 @@ -183,7 +183,7 @@ errorCBtn - + 60 32767 @@ -193,7 +193,7 @@ - + backgrndLabel_2_2 @@ -208,7 +208,7 @@ infoCBtn - + 60 32767 @@ -222,7 +222,7 @@ chanMsgCBtn - + 60 32767 @@ -236,7 +236,7 @@ selBackCBtn - + 60 32767 @@ -250,7 +250,7 @@ selForeCBtn - + 60 32767 @@ -260,7 +260,7 @@ - + backgrndLabel_2_2_2 @@ -271,7 +271,7 @@ backCBtn - + nickFGColorCB @@ -281,7 +281,7 @@ - + groupBox11 @@ -292,17 +292,17 @@ unnamed - + themeLE - + themeLB - + themeNewPB @@ -310,7 +310,7 @@ &New - + themeAddPB @@ -318,7 +318,7 @@ &Add - + themeDelPB @@ -336,7 +336,7 @@ Expanding - + 21 40 @@ -347,7 +347,7 @@ - + tab @@ -358,7 +358,7 @@ unnamed - + groupBox5 @@ -369,7 +369,7 @@ unnamed - + nickMatchLabel_2_2 @@ -384,7 +384,7 @@ ownNickCBtn - + 60 32767 @@ -394,7 +394,7 @@ - + ownNickBoldCB @@ -402,7 +402,7 @@ Bold - + ownNickRevCB @@ -410,7 +410,7 @@ Reverse - + ownNickUlCB @@ -428,7 +428,7 @@ Expanding - + 202 20 @@ -437,7 +437,7 @@ - + buttonGroup1 @@ -451,7 +451,7 @@ unnamed - + noOtherColRB @@ -459,7 +459,7 @@ N&o nick colors - + autoOtherColRB @@ -467,7 +467,7 @@ Au&to nick colorization - + fixedOtherColRB @@ -475,7 +475,7 @@ Fi&xed - + nickFGColorLabel @@ -490,13 +490,13 @@ nickFGCBtn - + 0 0 - + 60 32767 @@ -506,7 +506,7 @@ - + nickBGColorLabel @@ -524,7 +524,7 @@ false - + 60 32767 @@ -544,7 +544,7 @@ Expanding - + 83 21 @@ -553,7 +553,7 @@ - + nickGB @@ -564,15 +564,15 @@ unnamed - + - layout12 + tqlayout12 unnamed - + nickMatchLabel_2 @@ -587,7 +587,7 @@ ownContainNickCBtn - + 60 32767 @@ -607,7 +607,7 @@ Expanding - + 169 21 @@ -616,15 +616,15 @@ - + - layout11 + tqlayout11 unnamed - + nickMatchLabel_2_3 @@ -635,7 +635,7 @@ ownNickCBtn - + msg1LE @@ -644,7 +644,7 @@ msg1CBtn - + 60 32767 @@ -654,7 +654,7 @@ - + msg1Regex @@ -672,7 +672,7 @@ Expanding - + 104 21 @@ -681,15 +681,15 @@ - + - layout10 + tqlayout10 unnamed - + nickMatchLabel_2_3_2 @@ -700,7 +700,7 @@ ownNickCBtn - + msg2LE @@ -709,7 +709,7 @@ msg2CBtn - + 60 32767 @@ -719,7 +719,7 @@ - + msg2Regex @@ -737,7 +737,7 @@ Expanding - + 104 21 @@ -748,7 +748,7 @@ - + colorCodesGB @@ -765,7 +765,7 @@ 6 - + allowKSircColorsCB @@ -776,7 +776,7 @@ true - + allowMIRCColorsCB @@ -797,7 +797,7 @@ Expanding - + 21 20 @@ -816,7 +816,7 @@ Expanding - + 31 16 @@ -915,9 +915,9 @@ themeLB - clicked(QListBoxItem*) + clicked(TQListBoxItem*) PageColorsBase - theme_clicked(QListBoxItem*) + theme_clicked(TQListBoxItem*) themeLB @@ -1049,8 +1049,8 @@ themeAddPB themeDelPB - - theme_clicked(QListBoxItem*) + + theme_clicked(TQListBoxItem*) themeNewPB_clicked() themeDelPB_clicked() themeAddPB_clicked() @@ -1058,6 +1058,6 @@ setColourEnabled() coloursSetEnable() changed() - - + + diff --git a/ksirc/KSPrefs/page_font.cpp b/ksirc/KSPrefs/page_font.cpp index 5ea0dd9b..d10f8925 100644 --- a/ksirc/KSPrefs/page_font.cpp +++ b/ksirc/KSPrefs/page_font.cpp @@ -1,11 +1,11 @@ #include "page_font.h" #include "tqapplication.h" -PageFont::PageFont( TQWidget *parent, const char *name ) : - TQWidget( parent, name) +PageFont::PageFont( TQWidget *tqparent, const char *name ) : + TQWidget( tqparent, name) { - layout = new TQHBoxLayout(this); + tqlayout = new TQHBoxLayout(this); fontchooser = new KFontChooser(this); - layout->addWidget(fontchooser); + tqlayout->addWidget(fontchooser); connect(fontchooser,TQT_SIGNAL(fontSelected ( const TQFont&)), this, TQT_SLOT(update())); } @@ -21,7 +21,7 @@ void PageFont::update( void ){ void PageFont::saveConfig( void ) { ksopts->defaultFont = fontchooser->font(); - TQApplication::setFont(fontchooser->font(), true, "KSirc::TextView" ); + TQApplication::tqsetFont(fontchooser->font(), true, "KSirc::TextView" ); } void PageFont::readConfig( const KSOColors * opts ) diff --git a/ksirc/KSPrefs/page_font.h b/ksirc/KSPrefs/page_font.h index 44940170..d07babad 100644 --- a/ksirc/KSPrefs/page_font.h +++ b/ksirc/KSPrefs/page_font.h @@ -1,7 +1,7 @@ #ifndef _PAGE_FONT #define _PAGE_FONT #include // For the font selection widget -#include // For the layout +#include // For the tqlayout #include "ksopts.h" // For storing the info. /** @@ -9,15 +9,16 @@ * * @author Markus Weimer */ -class PageFont : public QWidget +class PageFont : public TQWidget { Q_OBJECT + TQ_OBJECT public: /** * Create the Widget */ - PageFont( TQWidget *parent = 0, const char *name = 0 ); + PageFont( TQWidget *tqparent = 0, const char *name = 0 ); /* @@ -56,7 +57,7 @@ class PageFont : public QWidget private: KFontChooser* fontchooser; /** The font choosing widget from kdelib */ - TQHBoxLayout* layout; + TQHBoxLayout* tqlayout; }; #endif diff --git a/ksirc/KSPrefs/page_general.cpp b/ksirc/KSPrefs/page_general.cpp index 51a78ec3..119201e1 100644 --- a/ksirc/KSPrefs/page_general.cpp +++ b/ksirc/KSPrefs/page_general.cpp @@ -15,7 +15,7 @@ #include "page_general.h" #include "../servercontroller.h" -PageGeneral::PageGeneral( TQWidget *parent, const char *name ) : PageGeneralBase( parent, name) +PageGeneral::PageGeneral( TQWidget *tqparent, const char *name ) : PageGeneralBase( tqparent, name) { } @@ -87,15 +87,15 @@ void PageGeneral::readConfig( const KSOGeneral *opts ) // remove utf16/ucs2 as it just doesn't work for IRC TQStringList::Iterator encodingIt = encodings.begin(); while ( encodingIt != encodings.end() ) { - if ( ( *encodingIt ).find( "utf16" ) != -1 || - ( *encodingIt ).find( "iso-10646" ) != -1 ) + if ( ( *encodingIt ).tqfind( "utf16" ) != -1 || + ( *encodingIt ).tqfind( "iso-10646" ) != -1 ) encodingIt = encodings.remove( encodingIt ); else ++encodingIt; } encodings.prepend( i18n( "Default" ) ); encodingsCB->insertStringList(encodings); - int eindex = encodings.findIndex(ksopts->channel["global"]["global"].encoding); + int eindex = encodings.tqfindIndex(ksopts->channel["global"]["global"].encoding); if(eindex == -1) encodingsCB->setCurrentItem(0); else diff --git a/ksirc/KSPrefs/page_general.h b/ksirc/KSPrefs/page_general.h index 253d6623..e7e3227c 100644 --- a/ksirc/KSPrefs/page_general.h +++ b/ksirc/KSPrefs/page_general.h @@ -16,9 +16,10 @@ class PageGeneral : public PageGeneralBase { Q_OBJECT + TQ_OBJECT public: - PageGeneral( TQWidget *parent = 0, const char *name = 0 ); + PageGeneral( TQWidget *tqparent = 0, const char *name = 0 ); ~PageGeneral(); void saveConfig(); diff --git a/ksirc/KSPrefs/page_generalbase.ui b/ksirc/KSPrefs/page_generalbase.ui index e8ae7e8f..d4dec93b 100644 --- a/ksirc/KSPrefs/page_generalbase.ui +++ b/ksirc/KSPrefs/page_generalbase.ui @@ -1,6 +1,6 @@ PageGeneralBase - + PageGeneralBase @@ -12,7 +12,7 @@ 489 - + 425 0 @@ -34,7 +34,7 @@ 0 - + miscGB @@ -51,7 +51,7 @@ unnamed - + Layout11 @@ -65,11 +65,11 @@ 6 - + historyItemsLabel - + 120 32767 @@ -82,7 +82,7 @@ historySB - + historySB @@ -112,7 +112,7 @@ - + publicAway @@ -126,7 +126,7 @@ If this is checked, you will see the messages when a user selects the away option. By default this option is not checked. - + autoCreateWindowCB @@ -140,7 +140,7 @@ If selected, KSirc will automatically create a new window for each user who sends a /msg command to you. If not selected, any text sent to you with /msg is displayed in the current window and you can use /query username to create a window to chat to that user. - + autoCreateWindowForNoticeCB @@ -148,7 +148,7 @@ Auto create &on notice - + autoRejoinCB @@ -162,7 +162,7 @@ If selected, it allows you to rejoin channels automatically if you are disconnected. - + dockPopupsCB @@ -170,7 +170,7 @@ Dock &passive popups - + displayTopicCB @@ -184,7 +184,7 @@ Displays the topic of the current channel in the window caption. If not selected, the topic is only displayed inside the window. - + colorPickerPopupCB @@ -198,7 +198,7 @@ If selected, a popup window from which to select the color of your text is presented when you press Ctrl K. If not, you have to type the color codes manually. - + oneLineEditCB @@ -206,7 +206,7 @@ One line te&xt entry box - + useColourNickListCB @@ -230,14 +230,14 @@ Expanding - + 16 21 - + nickCompletionCB @@ -251,7 +251,7 @@ If selected, switches nickname completion on. Nickname completion works as follows: Type the first letters of a user's nickname, press the Tab key, the text you typed will be completed to match the username, including changes in capitalization if necessary. - + dockedOnlyCB @@ -265,7 +265,7 @@ This allows KSirc to be docked in the system tray. By default this is not enabled. When KSirc is docked in the system tray, you are able to access several options by clicking on the KSirc icon. When you close KSirc window, the icon stays in the systray until you quit KSirc. - + autoSaveHistoryCB @@ -275,7 +275,7 @@ - + groupBox4 @@ -286,7 +286,7 @@ unnamed - + timeStampCB @@ -300,7 +300,7 @@ Prepends each thing said in the channel with the time it was said, in the form [HH:MM:SS]. - + applyGloballyCB @@ -314,7 +314,7 @@ If this is selected, the settings in this tab will override each channel's options so these settings will be applied in each channel, independently of your channel settings in the Channel menu. This setting will only work until next time you open the configuration dialog and it will be reset unchecked then; this is because you probably do not want to override the existing channels options all the time. - + showTopicCB @@ -328,7 +328,7 @@ Displays the channel topic on top of each channel window. - + beepCB @@ -336,7 +336,7 @@ &Beep on change - + joinPartCB @@ -344,7 +344,7 @@ Hide part/join messages - + enLoggingCB @@ -355,15 +355,15 @@ - + - layout2 + tqlayout2 unnamed - + encodingsL @@ -374,7 +374,7 @@ encodingsCB - + encodingsCB @@ -393,7 +393,7 @@ Expanding - + 31 71 @@ -531,10 +531,10 @@ showTopicCB enLoggingCB - + setPreviewPixmap(bool) showWallpaperPixmap(const QString &) changed() - - + + diff --git a/ksirc/KSPrefs/page_irccolors.cpp b/ksirc/KSPrefs/page_irccolors.cpp index 5ed96054..5177dc49 100644 --- a/ksirc/KSPrefs/page_irccolors.cpp +++ b/ksirc/KSPrefs/page_irccolors.cpp @@ -14,7 +14,7 @@ #include #include -PageIRCColors::PageIRCColors( TQWidget *parent, const char *name ) : PageIRCColorsBase( parent, name) +PageIRCColors::PageIRCColors( TQWidget *tqparent, const char *name ) : PageIRCColorsBase( tqparent, name) { } diff --git a/ksirc/KSPrefs/page_irccolors.h b/ksirc/KSPrefs/page_irccolors.h index 34565b42..843a8391 100644 --- a/ksirc/KSPrefs/page_irccolors.h +++ b/ksirc/KSPrefs/page_irccolors.h @@ -16,9 +16,10 @@ class PageIRCColors : public PageIRCColorsBase { Q_OBJECT + TQ_OBJECT public: - PageIRCColors( TQWidget *parent = 0, const char *name = 0 ); + PageIRCColors( TQWidget *tqparent = 0, const char *name = 0 ); ~PageIRCColors(); void saveConfig(); diff --git a/ksirc/KSPrefs/page_irccolorsbase.ui b/ksirc/KSPrefs/page_irccolorsbase.ui index 96fc18cc..7b7e31b9 100644 --- a/ksirc/KSPrefs/page_irccolorsbase.ui +++ b/ksirc/KSPrefs/page_irccolorsbase.ui @@ -1,6 +1,6 @@ PageIRCColorsBase - + PageIRCColorsBase @@ -22,7 +22,7 @@ 0 - + textLabel5 @@ -30,11 +30,11 @@ <p>This selection allows you to control what the colors displayed inline in the channel look like. These colors are used for both mIRC style colors in channels and colorful nicks. The sample box beside the button gives you an example of what it will look like in the channel. The checkbox controls if the color is used for the colorful nick features. Checked means use it.</p> - + tabWidget - + dark @@ -45,7 +45,7 @@ unnamed - + groupBox16 @@ -56,7 +56,7 @@ unnamed - + genericTextLabel_2 @@ -71,7 +71,7 @@ CBtn_1 - + 60 32767 @@ -81,7 +81,7 @@ - + TL_1 @@ -106,7 +106,7 @@ genericTextCBtn - + genericTextLabel @@ -137,7 +137,7 @@ 0 - + 60 32767 @@ -147,7 +147,7 @@ - + TL_0 @@ -172,7 +172,7 @@ genericTextCBtn - + genericTextLabel_3 @@ -187,7 +187,7 @@ CBtn_2 - + 60 32767 @@ -197,7 +197,7 @@ - + TL_2 @@ -222,7 +222,7 @@ genericTextCBtn - + genericTextLabel_5 @@ -237,7 +237,7 @@ CBtn_4 - + 60 32767 @@ -247,7 +247,7 @@ - + TL_4 @@ -264,7 +264,7 @@ genericTextCBtn - + genericTextLabel_4 @@ -279,7 +279,7 @@ CBtn_3 - + 60 32767 @@ -289,7 +289,7 @@ - + TL_3 @@ -306,7 +306,7 @@ genericTextCBtn - + genericTextLabel_6 @@ -321,7 +321,7 @@ CBtn_5 - + 60 32767 @@ -331,7 +331,7 @@ - + TL_5 @@ -348,7 +348,7 @@ genericTextCBtn - + genericTextLabel_7 @@ -363,7 +363,7 @@ CBtn_6 - + 60 32767 @@ -373,7 +373,7 @@ - + TL_6 @@ -390,7 +390,7 @@ genericTextCBtn - + genericTextLabel_8 @@ -405,7 +405,7 @@ CBtn_7 - + 60 32767 @@ -415,7 +415,7 @@ - + TL_7 @@ -432,7 +432,7 @@ genericTextCBtn - + CBox_0 @@ -448,7 +448,7 @@ - + CBox_1 @@ -456,7 +456,7 @@ - + CBox_2 @@ -464,7 +464,7 @@ - + CBox_3 @@ -472,7 +472,7 @@ - + CBox_4 @@ -480,7 +480,7 @@ - + CBox_5 @@ -488,7 +488,7 @@ - + CBox_6 @@ -496,7 +496,7 @@ - + CBox_7 @@ -516,7 +516,7 @@ Expanding - + 31 41 @@ -525,7 +525,7 @@ - + light @@ -536,7 +536,7 @@ unnamed - + ircColorsGB @@ -559,7 +559,7 @@ 6 - + genericTextLabel_11 @@ -570,7 +570,7 @@ genericTextCBtn - + genericTextLabel_12 @@ -581,7 +581,7 @@ genericTextCBtn - + genericTextLabel_13 @@ -592,7 +592,7 @@ genericTextCBtn - + genericTextLabel_14 @@ -603,7 +603,7 @@ genericTextCBtn - + genericTextLabel_15 @@ -614,7 +614,7 @@ genericTextCBtn - + genericTextLabel_16 @@ -629,7 +629,7 @@ CBtn_8 - + 60 32767 @@ -643,7 +643,7 @@ CBtn_9 - + 60 32767 @@ -657,7 +657,7 @@ CBtn_10 - + 60 32767 @@ -671,7 +671,7 @@ CBtn_11 - + 60 32767 @@ -685,7 +685,7 @@ CBtn_12 - + 60 32767 @@ -699,7 +699,7 @@ CBtn_13 - + 60 32767 @@ -713,7 +713,7 @@ CBtn_14 - + 60 32767 @@ -727,7 +727,7 @@ CBtn_15 - + 60 32767 @@ -737,7 +737,7 @@ - + genericTextLabel_10 @@ -748,7 +748,7 @@ genericTextCBtn - + TL_8 @@ -773,7 +773,7 @@ genericTextCBtn - + TL_9 @@ -790,7 +790,7 @@ genericTextCBtn - + TL_11 @@ -807,7 +807,7 @@ genericTextCBtn - + TL_10 @@ -824,7 +824,7 @@ genericTextCBtn - + TL_12 @@ -841,7 +841,7 @@ genericTextCBtn - + TL_13 @@ -858,7 +858,7 @@ genericTextCBtn - + TL_14 @@ -875,7 +875,7 @@ genericTextCBtn - + TL_15 @@ -892,7 +892,7 @@ genericTextCBtn - + CBox_8 @@ -908,7 +908,7 @@ - + CBox_9 @@ -924,7 +924,7 @@ - + CBox_10 @@ -940,7 +940,7 @@ - + CBox_11 @@ -956,7 +956,7 @@ - + CBox_12 @@ -972,7 +972,7 @@ - + CBox_13 @@ -988,7 +988,7 @@ - + CBox_14 @@ -1004,7 +1004,7 @@ - + CBox_15 @@ -1020,7 +1020,7 @@ - + genericTextLabel_9 @@ -1043,7 +1043,7 @@ Expanding - + 21 121 @@ -1249,11 +1249,11 @@ changed() - + chanaged() changed() - - + + kcolorbutton.h kcolorbutton.h diff --git a/ksirc/KSPrefs/page_looknfeel.cpp b/ksirc/KSPrefs/page_looknfeel.cpp index 29608e04..f29523b8 100644 --- a/ksirc/KSPrefs/page_looknfeel.cpp +++ b/ksirc/KSPrefs/page_looknfeel.cpp @@ -16,7 +16,7 @@ #include #include "page_looknfeel.h" -PageLooknFeel::PageLooknFeel( TQWidget *parent, const char *name ) : PageLooknFeelBase( parent, name) +PageLooknFeel::PageLooknFeel( TQWidget *tqparent, const char *name ) : PageLooknFeelBase( tqparent, name) { modePreview->setPixmap(TQPixmap(locate("data","ksirc/pics/sdi.png"))); wallpaperPathLE->fileDialog()->setFilter( "*.jpg *.png *.gif" ); diff --git a/ksirc/KSPrefs/page_looknfeel.h b/ksirc/KSPrefs/page_looknfeel.h index 326498cb..cc9d0f08 100644 --- a/ksirc/KSPrefs/page_looknfeel.h +++ b/ksirc/KSPrefs/page_looknfeel.h @@ -16,9 +16,10 @@ class PageLooknFeel : public PageLooknFeelBase { Q_OBJECT + TQ_OBJECT public: - PageLooknFeel( TQWidget *parent = 0, const char *name = 0 ); + PageLooknFeel( TQWidget *tqparent = 0, const char *name = 0 ); ~PageLooknFeel(); void saveConfig(); diff --git a/ksirc/KSPrefs/page_looknfeelbase.ui b/ksirc/KSPrefs/page_looknfeelbase.ui index 6aee3a14..ba4ea3f4 100644 --- a/ksirc/KSPrefs/page_looknfeelbase.ui +++ b/ksirc/KSPrefs/page_looknfeelbase.ui @@ -1,6 +1,6 @@ PageLooknFeelBase - + PageLooknFeelBase @@ -12,7 +12,7 @@ 452 - + 425 450 @@ -34,7 +34,7 @@ 0 - + windowModeGB @@ -61,14 +61,14 @@ Expanding - + 20 31 - + mdiCB @@ -92,21 +92,21 @@ Expanding - + 20 31 - + wmLabel Choose your favorite window mode: - + WordBreak|AlignVCenter|AlignLeft @@ -114,7 +114,7 @@ - + sdiCB @@ -128,17 +128,17 @@ 0 - + Frame3 - + 120 120 - + 120 120 @@ -150,7 +150,7 @@ Raised - + modePreview @@ -169,7 +169,7 @@ - + wallpaperGB @@ -180,7 +180,7 @@ unnamed - + Layout4 @@ -198,13 +198,13 @@ wallpaperPathLE - + 100 25 - + 32767 30 @@ -213,17 +213,17 @@ - + Frame3_2 - + 120 120 - + 120 120 @@ -235,7 +235,7 @@ Raised - + wallpaperPreview @@ -264,7 +264,7 @@ Expanding - + 51 1 @@ -309,12 +309,12 @@ sdiCB wallpaperPathLE - + setPreviewPixmap(bool) showWallpaperPixmap(const QString &) changed() - - + + kurlrequester.h klineedit.h diff --git a/ksirc/KSPrefs/page_rmbmenu.cpp b/ksirc/KSPrefs/page_rmbmenu.cpp index de30a829..c6bb24ee 100644 --- a/ksirc/KSPrefs/page_rmbmenu.cpp +++ b/ksirc/KSPrefs/page_rmbmenu.cpp @@ -20,7 +20,7 @@ -PageRMBMenu::PageRMBMenu( TQWidget *parent, const char *name ) : PageRMBMenuBase( parent, name) +PageRMBMenu::PageRMBMenu( TQWidget *tqparent, const char *name ) : PageRMBMenuBase( tqparent, name) { UserControlMenu *ucm; diff --git a/ksirc/KSPrefs/page_rmbmenu.h b/ksirc/KSPrefs/page_rmbmenu.h index 1d4a8dac..39b8cd89 100644 --- a/ksirc/KSPrefs/page_rmbmenu.h +++ b/ksirc/KSPrefs/page_rmbmenu.h @@ -16,9 +16,10 @@ class PageRMBMenu : public PageRMBMenuBase { Q_OBJECT + TQ_OBJECT public: - PageRMBMenu( TQWidget *parent = 0, const char *name = 0 ); + PageRMBMenu( TQWidget *tqparent = 0, const char *name = 0 ); ~PageRMBMenu(); void saveConfig(); diff --git a/ksirc/KSPrefs/page_rmbmenubase.ui b/ksirc/KSPrefs/page_rmbmenubase.ui index 1ef1e053..abeb6169 100644 --- a/ksirc/KSPrefs/page_rmbmenubase.ui +++ b/ksirc/KSPrefs/page_rmbmenubase.ui @@ -1,6 +1,6 @@ PageRMBMenuBase - + PageRMBMenuBase @@ -22,11 +22,11 @@ 0 - + explLabel - + 32767 32767 @@ -41,7 +41,7 @@ This page allows configuration of the RMB Menu for the nicklist located on the right. You can define names for certain actions. Look at the predefined commands to learn how it works. - + WordBreak|AlignVCenter|AlignLeft @@ -50,7 +50,7 @@ - + Layout28 @@ -64,12 +64,12 @@ 6 - + commandLB - + Layout26 @@ -83,7 +83,7 @@ 6 - + entryNameLabel @@ -94,12 +94,12 @@ entryLE - + entryLE - + commandLabel @@ -110,12 +110,12 @@ commandLE - + commandLE - + opEnableCB @@ -133,14 +133,14 @@ Expanding - + 20 20 - + Layout24 @@ -154,14 +154,14 @@ 6 - + moveUpPB false - + 32767 32767 @@ -171,14 +171,14 @@ Move Down - + moveDownPB false - + 32767 32767 @@ -200,14 +200,14 @@ Fixed - + 10 21 - + insertSeperatorPB @@ -215,7 +215,7 @@ Insert &Separator - + insertItemPB @@ -223,7 +223,7 @@ &Insert Command - + changeItemPB @@ -231,7 +231,7 @@ M&odify - + deleteItemPB @@ -248,5 +248,5 @@ kseparator.h - + diff --git a/ksirc/KSPrefs/page_servchan.cpp b/ksirc/KSPrefs/page_servchan.cpp index f7587947..e1ed6413 100644 --- a/ksirc/KSPrefs/page_servchan.cpp +++ b/ksirc/KSPrefs/page_servchan.cpp @@ -15,7 +15,7 @@ #include #include -PageServChan::PageServChan( TQWidget *parent, const char *name ) : PageServChanBase( parent, name) +PageServChan::PageServChan( TQWidget *tqparent, const char *name ) : PageServChanBase( tqparent, name) { connect(serverDeleteItemPB, TQT_SIGNAL(pressed()), this, TQT_SLOT(deletePressedSL())); connect(ServerAddItemPB, TQT_SIGNAL(pressed()), this, TQT_SLOT(addPressedSL())); diff --git a/ksirc/KSPrefs/page_servchan.h b/ksirc/KSPrefs/page_servchan.h index 1e20e8d7..8db7d223 100644 --- a/ksirc/KSPrefs/page_servchan.h +++ b/ksirc/KSPrefs/page_servchan.h @@ -16,9 +16,10 @@ class PageServChan : public PageServChanBase { Q_OBJECT + TQ_OBJECT public: - PageServChan( TQWidget *parent = 0, const char *name = 0 ); + PageServChan( TQWidget *tqparent = 0, const char *name = 0 ); ~PageServChan(); void saveConfig(); diff --git a/ksirc/KSPrefs/page_servchanbase.ui b/ksirc/KSPrefs/page_servchanbase.ui index b24ce9dc..59ad646f 100644 --- a/ksirc/KSPrefs/page_servchanbase.ui +++ b/ksirc/KSPrefs/page_servchanbase.ui @@ -1,6 +1,6 @@ PageServChanBase - + PageServChanBase @@ -22,7 +22,7 @@ 0 - + GroupBox33 @@ -39,12 +39,12 @@ 6 - + serverLB - + Layout15 @@ -58,7 +58,7 @@ 6 - + serverDeleteItemPB @@ -77,7 +77,7 @@ Expanding - + ServerAddItemPB @@ -85,7 +85,7 @@ Add &Server to List - + LineEdit6 @@ -94,7 +94,7 @@ - + GroupBox34 @@ -111,12 +111,12 @@ 6 - + channelLB - + Layout15_2 @@ -130,7 +130,7 @@ 6 - + chanDeleteItmPB @@ -149,7 +149,7 @@ Expanding - + ChanAddItemPB @@ -157,7 +157,7 @@ Add Cha&nnel to List - + LineEdit6_2 @@ -168,5 +168,5 @@ - + diff --git a/ksirc/KSPrefs/page_shortcuts.cpp b/ksirc/KSPrefs/page_shortcuts.cpp index 4d2fda54..ab30824a 100644 --- a/ksirc/KSPrefs/page_shortcuts.cpp +++ b/ksirc/KSPrefs/page_shortcuts.cpp @@ -16,13 +16,13 @@ #include "page_shortcuts.h" #include "../servercontroller.h" -PageShortcuts::PageShortcuts( TQWidget *parent, const char *name ) : PageShortcutsBase( parent, name) +PageShortcuts::PageShortcuts( TQWidget *tqparent, const char *name ) : PageShortcutsBase( tqparent, name) { globalGB->setColumnLayout( 0, Qt::Horizontal ); m_key = new KKeyChooser(servercontroller::self()->getGlobalAccel(), globalGB); connect(m_key, TQT_SIGNAL(keyChange()), this, TQT_SLOT(changed())); - globalGB->layout()->add(m_key); + globalGB->tqlayout()->add(m_key); } PageShortcuts::~PageShortcuts() diff --git a/ksirc/KSPrefs/page_shortcuts.h b/ksirc/KSPrefs/page_shortcuts.h index 36048f44..c551db9b 100644 --- a/ksirc/KSPrefs/page_shortcuts.h +++ b/ksirc/KSPrefs/page_shortcuts.h @@ -18,9 +18,10 @@ class KKeyChooser; class PageShortcuts : public PageShortcutsBase { Q_OBJECT + TQ_OBJECT public: - PageShortcuts( TQWidget *parent = 0, const char *name = 0 ); + PageShortcuts( TQWidget *tqparent = 0, const char *name = 0 ); ~PageShortcuts(); void saveConfig(); diff --git a/ksirc/KSPrefs/page_shortcutsbase.ui b/ksirc/KSPrefs/page_shortcutsbase.ui index 57f21647..c570f73f 100644 --- a/ksirc/KSPrefs/page_shortcutsbase.ui +++ b/ksirc/KSPrefs/page_shortcutsbase.ui @@ -1,6 +1,6 @@ PageShortcutsBase - + PageShortcutslBase @@ -12,7 +12,7 @@ 452 - + 425 450 @@ -34,7 +34,7 @@ 0 - + globalGB @@ -48,10 +48,10 @@ - + setPreviewPixmap(bool) showWallpaperPixmap(const QString &) changed() - - + + diff --git a/ksirc/KSPrefs/page_startup.cpp b/ksirc/KSPrefs/page_startup.cpp index e2ddfdc1..37b3f875 100644 --- a/ksirc/KSPrefs/page_startup.cpp +++ b/ksirc/KSPrefs/page_startup.cpp @@ -19,7 +19,7 @@ #include "page_startup.h" -PageStartup::PageStartup( TQWidget *parent, const char *name ) : PageStartupBase( parent, name) +PageStartup::PageStartup( TQWidget *tqparent, const char *name ) : PageStartupBase( tqparent, name) { notifyLB->upButton()->hide(); notifyLB->downButton()->hide(); @@ -49,7 +49,7 @@ void PageStartup::saveConfig() for( ; it != items.end(); ++it){ ksopts->server[*it] = server[*it]; } - if(!ksopts->server.contains("global")){ + if(!ksopts->server.tqcontains("global")){ ksopts->server["global"] = glb; } @@ -65,7 +65,7 @@ void PageStartup::readConfig( const KSOptions *opts ) if(it.data().globalCopy == false) serverLB->insertItem(it.key()); } - TQListBoxItem *item = serverLB->listBox()->findItem("global"); + TQListBoxItem *item = serverLB->listBox()->tqfindItem("global"); serverLB->listBox()->setSelected(item, true); changing = false; clickedLB(serverLB->listBox()->index(item)); @@ -107,7 +107,7 @@ void PageStartup::clickedLB(int index) { TQString text = serverLB->text(index); - if(!server.contains(text)){ + if(!server.tqcontains(text)){ server[text] = server["global"]; server[text].globalCopy = true; } diff --git a/ksirc/KSPrefs/page_startup.h b/ksirc/KSPrefs/page_startup.h index c2092e65..ab905770 100644 --- a/ksirc/KSPrefs/page_startup.h +++ b/ksirc/KSPrefs/page_startup.h @@ -16,9 +16,10 @@ class PageStartup : public PageStartupBase { Q_OBJECT + TQ_OBJECT public: - PageStartup( TQWidget *parent = 0, const char *name = 0 ); + PageStartup( TQWidget *tqparent = 0, const char *name = 0 ); ~PageStartup(); void saveConfig(); diff --git a/ksirc/KSPrefs/page_startupbase.ui b/ksirc/KSPrefs/page_startupbase.ui index 1a248806..125b0934 100644 --- a/ksirc/KSPrefs/page_startupbase.ui +++ b/ksirc/KSPrefs/page_startupbase.ui @@ -1,6 +1,6 @@ PageStartupBase - + PageStartupBase @@ -38,11 +38,11 @@ Server - + nickGB - + 32767 32767 @@ -61,22 +61,22 @@ 6 - + nickLE - + altNickLE - + rnLE - + nickLabel @@ -87,7 +87,7 @@ nickLE - + anLabel @@ -98,12 +98,12 @@ altNickLE - + uiLE - + uiLabel @@ -114,7 +114,7 @@ rnLE - + rnLabel @@ -183,11 +183,11 @@ server_changed() - + changed() server_changed() - - + + keditlistbox.h klineedit.h -- cgit v1.2.1