diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:28:10 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:28:10 +0000 |
commit | 1c3e6a878f147d063b43948dd8a3f06da195e7ea (patch) | |
tree | 3d0575a90e6b1c3cedb0c7b1d86970eb4ca92354 /kaddressbook | |
parent | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (diff) | |
download | tdepim-1c3e6a878f147d063b43948dd8a3f06da195e7ea.tar.gz tdepim-1c3e6a878f147d063b43948dd8a3f06da195e7ea.zip |
TQt conversion fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1158452 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kaddressbook')
50 files changed, 148 insertions, 148 deletions
diff --git a/kaddressbook/addresseditwidget.h b/kaddressbook/addresseditwidget.h index 8c02ee681..1fccc604a 100644 --- a/kaddressbook/addresseditwidget.h +++ b/kaddressbook/addresseditwidget.h @@ -33,11 +33,11 @@ #include "addresseeconfig.h" #include "typecombo.h" -class QButtonGroup; -class QCheckBox; -class QListView; -class QTextEdit; -class QToolButton; +class TQButtonGroup; +class TQCheckBox; +class TQListView; +class TQTextEdit; +class TQToolButton; class KActiveLabel; class KComboBox; diff --git a/kaddressbook/addresseeeditordialog.h b/kaddressbook/addresseeeditordialog.h index 5427a588d..0cd093977 100644 --- a/kaddressbook/addresseeeditordialog.h +++ b/kaddressbook/addresseeeditordialog.h @@ -29,7 +29,7 @@ #include <kabc/addressbook.h> class AddresseeEditorBase; -class QWidget; +class TQWidget; namespace KAB { class Core; } class AddresseeEditorDialog : public KDialogBase diff --git a/kaddressbook/addresseeeditorwidget.h b/kaddressbook/addresseeeditorwidget.h index 36711773b..f3e6dc595 100644 --- a/kaddressbook/addresseeeditorwidget.h +++ b/kaddressbook/addresseeeditorwidget.h @@ -34,10 +34,10 @@ #include "contacteditorwidgetmanager.h" #include "extensionwidget.h" -class QCheckBox; -class QSpinBox; -class QTabWidget; -class QTextEdit; +class TQCheckBox; +class TQSpinBox; +class TQTabWidget; +class TQTextEdit; class KComboBox; class KDateEdit; diff --git a/kaddressbook/addviewdialog.h b/kaddressbook/addviewdialog.h index a3c956792..13cf2ef89 100644 --- a/kaddressbook/addviewdialog.h +++ b/kaddressbook/addviewdialog.h @@ -28,8 +28,8 @@ #include <tqdict.h> #include <tqstring.h> -class QButtonGroup; -class QLineEdit; +class TQButtonGroup; +class TQLineEdit; class ViewFactory; diff --git a/kaddressbook/contacteditorwidgetmanager.h b/kaddressbook/contacteditorwidgetmanager.h index 8ffbd1832..d0b03ddf5 100644 --- a/kaddressbook/contacteditorwidgetmanager.h +++ b/kaddressbook/contacteditorwidgetmanager.h @@ -32,7 +32,7 @@ namespace KABC { class Addressee; } -class QGridLayout; +class TQGridLayout; class ContactEditorWidgetManager : public QObject { diff --git a/kaddressbook/customfieldswidget.h b/kaddressbook/customfieldswidget.h index 19e962027..b4c113264 100644 --- a/kaddressbook/customfieldswidget.h +++ b/kaddressbook/customfieldswidget.h @@ -36,12 +36,12 @@ #include "contacteditorwidget.h" -class QCheckBox; -class QGridLayout; -class QLabel; -class QPushButton; -class QVBoxLayout; -class QWidget; +class TQCheckBox; +class TQGridLayout; +class TQLabel; +class TQPushButton; +class TQVBoxLayout; +class TQWidget; class KComboBox; class KLineEdit; diff --git a/kaddressbook/distributionlisteditor.cpp b/kaddressbook/distributionlisteditor.cpp index 1c57a134b..1b379b4a1 100644 --- a/kaddressbook/distributionlisteditor.cpp +++ b/kaddressbook/distributionlisteditor.cpp @@ -164,7 +164,7 @@ KPIM::DistributionListEditor::EditorWidget::EditorWidget( KABC::AddressBook* boo mainLayout->setMargin( KDialog::marginHint() ); mainLayout->setSpacing( KDialog::spacingHint() ); - TQHBoxLayout* nameLayout = new QHBoxLayout; + TQHBoxLayout* nameLayout = new TQHBoxLayout; nameLayout->setSpacing( KDialog::spacingHint() ); d->nameLabel = new TQLabel( main ); d->nameLabel->setText( i18n( "Name:" ) ); @@ -186,7 +186,7 @@ KPIM::DistributionListEditor::EditorWidget::EditorWidget( KABC::AddressBook* boo d->memberListWidget = new TQWidget( d->scrollView->viewport() ); d->memberListWidget->setSizePolicy( TQSizePolicy::MinimumExpanding, TQSizePolicy::MinimumExpanding ); TQVBoxLayout* memberLayout = new TQVBoxLayout( d->memberListWidget ); - d->addresseeLayout = new QVBoxLayout; + d->addresseeLayout = new TQVBoxLayout; d->addresseeLayout->setSpacing( KDialog::spacingHint() ); memberLayout->addItem( d->addresseeLayout ); memberLayout->addStretch(); diff --git a/kaddressbook/distributionlisteditor_p.h b/kaddressbook/distributionlisteditor_p.h index 61573ae97..6deb2d004 100644 --- a/kaddressbook/distributionlisteditor_p.h +++ b/kaddressbook/distributionlisteditor_p.h @@ -29,7 +29,7 @@ #include <tqpushbutton.h> #include <tqstring.h> -class QToolButton; +class TQToolButton; namespace KABC { class Addressee; diff --git a/kaddressbook/distributionlistentryview.cpp b/kaddressbook/distributionlistentryview.cpp index 8e421a760..c28cbec2b 100644 --- a/kaddressbook/distributionlistentryview.cpp +++ b/kaddressbook/distributionlistentryview.cpp @@ -26,7 +26,7 @@ KAB::DistributionListEntryView::DistributionListEntryView( KAB::Core* core, TQWi m_mainLayout->setSpacing( KDialog::spacingHint() ); m_mainLayout->setMargin( KDialog::marginHint() ); - TQBoxLayout* headerLayout = new QHBoxLayout; + TQBoxLayout* headerLayout = new TQHBoxLayout; headerLayout->setSpacing( KDialog::spacingHint() * 3 ); m_imageLabel = new TQLabel( this ); @@ -39,7 +39,7 @@ KAB::DistributionListEntryView::DistributionListEntryView( KAB::Core* core, TQWi m_mainLayout->addItem( headerLayout ); - TQBoxLayout* distLayout = new QHBoxLayout; + TQBoxLayout* distLayout = new TQHBoxLayout; distLayout->setSpacing( KDialog::spacingHint() ); TQLabel* distLabel = new TQLabel( this ); @@ -60,16 +60,16 @@ KAB::DistributionListEntryView::DistributionListEntryView( KAB::Core* core, TQWi emailLabel->setAlignment( Qt::SingleLine ); m_mainLayout->addWidget( emailLabel ); - TQBoxLayout* emailLayout = new QHBoxLayout; + TQBoxLayout* emailLayout = new TQHBoxLayout; emailLayout->setSpacing( KDialog::spacingHint() ); emailLayout->addSpacing( 30 ); - m_radioLayout = new QGridLayout; + m_radioLayout = new TQGridLayout; emailLayout->addItem( m_radioLayout ); emailLayout->addStretch(); m_mainLayout->addItem( emailLayout ); - TQBoxLayout* resourceLayout = new QHBoxLayout; + TQBoxLayout* resourceLayout = new TQHBoxLayout; resourceLayout->setSpacing( KDialog::spacingHint() ); m_resourceLabel = new TQLabel( this ); resourceLayout->addWidget( m_resourceLabel ); diff --git a/kaddressbook/distributionlistentryview.h b/kaddressbook/distributionlistentryview.h index e3d9b8625..3ee06309b 100644 --- a/kaddressbook/distributionlistentryview.h +++ b/kaddressbook/distributionlistentryview.h @@ -7,11 +7,11 @@ #include <tqstring.h> #include <tqwidget.h> -class QBoxLayout; -class QButtonGroup; -class QComboBox; -class QGridLayout; -class QLabel; +class TQBoxLayout; +class TQButtonGroup; +class TQComboBox; +class TQGridLayout; +class TQLabel; class KURLLabel; diff --git a/kaddressbook/editors/cryptowidget.h b/kaddressbook/editors/cryptowidget.h index 559279855..8037a4a49 100644 --- a/kaddressbook/editors/cryptowidget.h +++ b/kaddressbook/editors/cryptowidget.h @@ -26,12 +26,12 @@ #include "contacteditorwidget.h" -class QComboBox; +class TQComboBox; namespace Kleo { class KeyRequester; } -class QCheckBox; +class TQCheckBox; class CryptoWidget : public KAB::ContactEditorWidget { diff --git a/kaddressbook/emaileditwidget.h b/kaddressbook/emaileditwidget.h index ee9ec0119..ea1af4c3f 100644 --- a/kaddressbook/emaileditwidget.h +++ b/kaddressbook/emaileditwidget.h @@ -27,11 +27,11 @@ #include <kabc/addressee.h> #include <kdialogbase.h> -class QButtonGroup; -class QCheckBox; -class QListView; -class QTextEdit; -class QToolButton; +class TQButtonGroup; +class TQCheckBox; +class TQListView; +class TQTextEdit; +class TQToolButton; class KComboBox; class KLineEdit; diff --git a/kaddressbook/extensionmanager.h b/kaddressbook/extensionmanager.h index 44cf24c36..054266205 100644 --- a/kaddressbook/extensionmanager.h +++ b/kaddressbook/extensionmanager.h @@ -31,8 +31,8 @@ #include <tqptrlist.h> #include <tqstringlist.h> -class QSignalMapper; -class QWidgetStack; +class TQSignalMapper; +class TQWidgetStack; class KActionCollection; namespace KAB { diff --git a/kaddressbook/features/distributionlistngwidget.h b/kaddressbook/features/distributionlistngwidget.h index 0bfa3d29d..8c90c0dc5 100644 --- a/kaddressbook/features/distributionlistngwidget.h +++ b/kaddressbook/features/distributionlistngwidget.h @@ -31,11 +31,11 @@ #include <tqstringlist.h> -class QDragEnterEvent; -class QDragMoveEvent; -class QDropEvent; -class QPoint; -class QPushButton; +class TQDragEnterEvent; +class TQDragMoveEvent; +class TQDropEvent; +class TQPoint; +class TQPushButton; namespace KABC { class DistributionListManager; diff --git a/kaddressbook/features/distributionlistwidget.h b/kaddressbook/features/distributionlistwidget.h index 4ee5e76ad..e74ac758f 100644 --- a/kaddressbook/features/distributionlistwidget.h +++ b/kaddressbook/features/distributionlistwidget.h @@ -30,9 +30,9 @@ #include "extensionwidget.h" -class QButtonGroup; -class QComboBox; -class QListView; +class TQButtonGroup; +class TQComboBox; +class TQListView; class DistributionListView; diff --git a/kaddressbook/features/resourceselection.h b/kaddressbook/features/resourceselection.h index 831cc4a55..21c3ee841 100644 --- a/kaddressbook/features/resourceselection.h +++ b/kaddressbook/features/resourceselection.h @@ -28,8 +28,8 @@ #include "extensionwidget.h" -class QListViewItem; -class QPushButton; +class TQListViewItem; +class TQPushButton; namespace KPIM { class ResourceABC; } diff --git a/kaddressbook/filtereditdialog.h b/kaddressbook/filtereditdialog.h index b52966b64..2b5d38b6b 100644 --- a/kaddressbook/filtereditdialog.h +++ b/kaddressbook/filtereditdialog.h @@ -24,10 +24,10 @@ #ifndef FILTEREDITDIALOG_H #define FILTEREDITDIALOG_H -class QButtonGroup; -class QString; -class QToolButton; -class QWidget; +class TQButtonGroup; +class TQString; +class TQToolButton; +class TQWidget; class KLineEdit; class KListBox; diff --git a/kaddressbook/geowidget.h b/kaddressbook/geowidget.h index 70b677232..0713d02ec 100644 --- a/kaddressbook/geowidget.h +++ b/kaddressbook/geowidget.h @@ -37,10 +37,10 @@ class GeoMapWidget; class KComboBox; class KDoubleSpinBox; -class QCheckBox; -class QLabel; -class QSpinBox; -class QPushButton; +class TQCheckBox; +class TQLabel; +class TQSpinBox; +class TQPushButton; typedef struct { double latitude; diff --git a/kaddressbook/imeditwidget.h b/kaddressbook/imeditwidget.h index 2252981ca..0d1ee222b 100644 --- a/kaddressbook/imeditwidget.h +++ b/kaddressbook/imeditwidget.h @@ -27,11 +27,11 @@ #include <kabc/addressee.h> #include <kdialogbase.h> -class QButtonGroup; -class QCheckBox; -class QListView; -class QTextEdit; -class QToolButton; +class TQButtonGroup; +class TQCheckBox; +class TQListView; +class TQTextEdit; +class TQToolButton; class KComboBox; class KLineEdit; diff --git a/kaddressbook/incsearchwidget.h b/kaddressbook/incsearchwidget.h index f1ef00f45..0d400c0fb 100644 --- a/kaddressbook/incsearchwidget.h +++ b/kaddressbook/incsearchwidget.h @@ -28,8 +28,8 @@ #include <kabc/field.h> -class QComboBox; -class QTimer; +class TQComboBox; +class TQTimer; class KLineEdit; class IncSearchWidget : public QWidget diff --git a/kaddressbook/interfaces/core.h b/kaddressbook/interfaces/core.h index 1897a0bd1..16fa4c839 100644 --- a/kaddressbook/interfaces/core.h +++ b/kaddressbook/interfaces/core.h @@ -42,7 +42,7 @@ class AddressBook; class Resource; } -class QWidget; +class TQWidget; class KActionCollection; class KConfig; diff --git a/kaddressbook/jumpbuttonbar.h b/kaddressbook/jumpbuttonbar.h index b092a7587..7ff678985 100644 --- a/kaddressbook/jumpbuttonbar.h +++ b/kaddressbook/jumpbuttonbar.h @@ -29,9 +29,9 @@ #include <tqptrlist.h> #include <tqstringlist.h> -class QButtonGroup; -class QResizeEvent; -class QPushButton; +class TQButtonGroup; +class TQResizeEvent; +class TQPushButton; namespace KAB { class Core; diff --git a/kaddressbook/kabcore.h b/kaddressbook/kabcore.h index ed6b4ab5f..5a3b0c4b1 100644 --- a/kaddressbook/kabcore.h +++ b/kaddressbook/kabcore.h @@ -52,9 +52,9 @@ class KStatusBar; class KToggleAction; class KXMLGUIClient; -class QSplitter; -class QHBoxLayout; -class QWidgetStack; +class TQSplitter; +class TQHBoxLayout; +class TQWidgetStack; class AddresseeEditorDialog; class ExtensionManager; diff --git a/kaddressbook/kaddressbookview.h b/kaddressbook/kaddressbookview.h index eb5e25156..a851e684c 100644 --- a/kaddressbook/kaddressbookview.h +++ b/kaddressbook/kaddressbookview.h @@ -39,7 +39,7 @@ class KConfig; class KXMLGUIClient; -class QDropEvent; +class TQDropEvent; namespace KAB { class Core; } namespace KABC { class AddressBook; } diff --git a/kaddressbook/kcmconfigs/addhostdialog.h b/kaddressbook/kcmconfigs/addhostdialog.h index 12d145f08..702bb323b 100644 --- a/kaddressbook/kcmconfigs/addhostdialog.h +++ b/kaddressbook/kcmconfigs/addhostdialog.h @@ -29,8 +29,8 @@ #include <libkdepim/ldapclient.h> class KLineEdit; -class QPushButton; -class QSpinBox; +class TQPushButton; +class TQSpinBox; class AddHostDialog : public KDialogBase { diff --git a/kaddressbook/kcmconfigs/addresseewidget.h b/kaddressbook/kcmconfigs/addresseewidget.h index 9f4b4332a..b8bbf217e 100644 --- a/kaddressbook/kcmconfigs/addresseewidget.h +++ b/kaddressbook/kcmconfigs/addresseewidget.h @@ -29,9 +29,9 @@ class KComboBox; class KLineEdit; -class QListBox; -class QListBoxItem; -class QPushButton; +class TQListBox; +class TQListBoxItem; +class TQPushButton; class NamePartWidget : public QWidget { diff --git a/kaddressbook/kcmconfigs/kabconfigwidget.h b/kaddressbook/kcmconfigs/kabconfigwidget.h index 3e5718690..54cdbf0ee 100644 --- a/kaddressbook/kcmconfigs/kabconfigwidget.h +++ b/kaddressbook/kcmconfigs/kabconfigwidget.h @@ -26,11 +26,11 @@ #include <tqwidget.h> -class QCheckBox; -class QLineEdit; -class QListViewItem; -class QPushButton; -class QComboBox; +class TQCheckBox; +class TQLineEdit; +class TQListViewItem; +class TQPushButton; +class TQComboBox; class KListView; diff --git a/kaddressbook/kcmconfigs/ldapoptionswidget.h b/kaddressbook/kcmconfigs/ldapoptionswidget.h index 22b7e621e..10f1d90d8 100644 --- a/kaddressbook/kcmconfigs/ldapoptionswidget.h +++ b/kaddressbook/kcmconfigs/ldapoptionswidget.h @@ -26,10 +26,10 @@ #include <tqwidget.h> -class QToolButton; +class TQToolButton; class KListView; -class QListViewItem; -class QPushButton; +class TQListViewItem; +class TQPushButton; class LDAPOptionsWidget : public QWidget { diff --git a/kaddressbook/keywidget.h b/kaddressbook/keywidget.h index 2b3b83a0c..566589dde 100644 --- a/kaddressbook/keywidget.h +++ b/kaddressbook/keywidget.h @@ -29,7 +29,7 @@ class KComboBox; -class QPushButton; +class TQPushButton; class KeyWidget : public QWidget { diff --git a/kaddressbook/ldapsearchdialog.h b/kaddressbook/ldapsearchdialog.h index 8c368a116..f7f384d50 100644 --- a/kaddressbook/ldapsearchdialog.h +++ b/kaddressbook/ldapsearchdialog.h @@ -37,9 +37,9 @@ class KAddressBookTableView; class KComboBox; class KLineEdit; -class QCheckBox; -class QListView; -class QPushButton; +class TQCheckBox; +class TQListView; +class TQPushButton; class KABCore; class ContactListItem; diff --git a/kaddressbook/nameeditdialog.h b/kaddressbook/nameeditdialog.h index 6ba602c92..793c1a8f3 100644 --- a/kaddressbook/nameeditdialog.h +++ b/kaddressbook/nameeditdialog.h @@ -29,7 +29,7 @@ #include "addresseeconfig.h" -class QCheckBox; +class TQCheckBox; class KLineEdit; class KComboBox; diff --git a/kaddressbook/phoneeditwidget.h b/kaddressbook/phoneeditwidget.h index 7089d1c2b..0db2301ed 100644 --- a/kaddressbook/phoneeditwidget.h +++ b/kaddressbook/phoneeditwidget.h @@ -29,9 +29,9 @@ #include "addresseeconfig.h" -class QButtonGroup; -class QCheckBox; -class QSignalMapper; +class TQButtonGroup; +class TQCheckBox; +class TQSignalMapper; class KLineEdit; class KComboBox; diff --git a/kaddressbook/printing/printingwizard.h b/kaddressbook/printing/printingwizard.h index 8e6a678b5..ab82a8bcb 100644 --- a/kaddressbook/printing/printingwizard.h +++ b/kaddressbook/printing/printingwizard.h @@ -39,7 +39,7 @@ class KPrinter; -class QVBoxLayout; +class TQVBoxLayout; namespace KABPrinting { diff --git a/kaddressbook/printing/printprogress.h b/kaddressbook/printing/printprogress.h index 83c6f3391..916d82058 100644 --- a/kaddressbook/printing/printprogress.h +++ b/kaddressbook/printing/printprogress.h @@ -26,9 +26,9 @@ #include <tqwidget.h> -class QProgressBar; -class QString; -class QTextBrowser; +class TQProgressBar; +class TQString; +class TQTextBrowser; namespace KABPrinting { diff --git a/kaddressbook/printing/selectionpage.h b/kaddressbook/printing/selectionpage.h index 457d7f679..031b0b5e2 100644 --- a/kaddressbook/printing/selectionpage.h +++ b/kaddressbook/printing/selectionpage.h @@ -26,11 +26,11 @@ #include <tqwidget.h> -class QButtonGroup; -class QComboBox; -class QListView; -class QListViewItem; -class QRadioButton; +class TQButtonGroup; +class TQComboBox; +class TQListView; +class TQListViewItem; +class TQRadioButton; class SelectionPage : public QWidget { diff --git a/kaddressbook/printing/stylepage.h b/kaddressbook/printing/stylepage.h index 961ddd84e..91be390fc 100644 --- a/kaddressbook/printing/stylepage.h +++ b/kaddressbook/printing/stylepage.h @@ -30,9 +30,9 @@ #include <kabc/addressbook.h> #include <kabc/field.h> -class QLabel; -class QPixmap; -class QRadioButton; +class TQLabel; +class TQPixmap; +class TQRadioButton; class KComboBox; class StylePage : public QWidget diff --git a/kaddressbook/soundwidget.h b/kaddressbook/soundwidget.h index 7dd0e116a..679609c6c 100644 --- a/kaddressbook/soundwidget.h +++ b/kaddressbook/soundwidget.h @@ -30,8 +30,8 @@ class KURLRequester; -class QCheckBox; -class QPushButton; +class TQCheckBox; +class TQPushButton; class SoundWidget : public KAB::ContactEditorWidget { diff --git a/kaddressbook/viewconfigurefieldspage.h b/kaddressbook/viewconfigurefieldspage.h index e0ccdb8ba..eae950850 100644 --- a/kaddressbook/viewconfigurefieldspage.h +++ b/kaddressbook/viewconfigurefieldspage.h @@ -30,10 +30,10 @@ #include <kabc/addressbook.h> class KComboBox; -class QListBox; -class QListBoxItem; -class QPushButton; -class QToolButton; +class TQListBox; +class TQListBoxItem; +class TQPushButton; +class TQToolButton; class ViewConfigureFieldsPage : public QWidget { diff --git a/kaddressbook/viewconfigurefilterpage.h b/kaddressbook/viewconfigurefilterpage.h index fbb8b987b..77d0bde65 100644 --- a/kaddressbook/viewconfigurefilterpage.h +++ b/kaddressbook/viewconfigurefilterpage.h @@ -26,7 +26,7 @@ #include <tqwidget.h> -class QButtonGroup; +class TQButtonGroup; class KComboBox; class KConfig; diff --git a/kaddressbook/viewconfigurewidget.h b/kaddressbook/viewconfigurewidget.h index 590b9fa1e..d3f7022ca 100644 --- a/kaddressbook/viewconfigurewidget.h +++ b/kaddressbook/viewconfigurewidget.h @@ -32,8 +32,8 @@ class KJanusWidget; -class QString; -class QVBox; +class TQString; +class TQVBox; class ViewConfigureFieldsPage; class ViewConfigureFilterPage; diff --git a/kaddressbook/viewmanager.h b/kaddressbook/viewmanager.h index 4b37b10ba..06405ac64 100644 --- a/kaddressbook/viewmanager.h +++ b/kaddressbook/viewmanager.h @@ -28,8 +28,8 @@ #include <tqwidget.h> #include <kaddressbookview.h> -class QDropEvent; -class QWidgetStack; +class TQDropEvent; +class TQWidgetStack; class KAction; class KSelectAction; diff --git a/kaddressbook/views/cardview.h b/kaddressbook/views/cardview.h index 6539f4459..5ab75e6ca 100644 --- a/kaddressbook/views/cardview.h +++ b/kaddressbook/views/cardview.h @@ -31,10 +31,10 @@ #include <tqscrollview.h> #include <tqstring.h> -class QLabel; -class QMouseEvent; -class QPainter; -class QResizeEvent; +class TQLabel; +class TQMouseEvent; +class TQPainter; +class TQResizeEvent; class CardView; class CardViewItemPrivate; diff --git a/kaddressbook/views/configurecardviewdialog.h b/kaddressbook/views/configurecardviewdialog.h index 4d9d19be5..441a1e89c 100644 --- a/kaddressbook/views/configurecardviewdialog.h +++ b/kaddressbook/views/configurecardviewdialog.h @@ -30,10 +30,10 @@ #include <tqwidget.h> #include <tqfont.h> -class QString; -class QWidget; -class QCheckBox; -class QLabel; +class TQString; +class TQWidget; +class TQCheckBox; +class TQLabel; class KConfig; namespace KABC { class AddressBook; } diff --git a/kaddressbook/views/configuretableviewdialog.h b/kaddressbook/views/configuretableviewdialog.h index f1f89d0dc..58bac86d3 100644 --- a/kaddressbook/views/configuretableviewdialog.h +++ b/kaddressbook/views/configuretableviewdialog.h @@ -26,10 +26,10 @@ #include "viewconfigurewidget.h" -class QString; -class QWidget; -class QRadioButton; -class QCheckBox; +class TQString; +class TQWidget; +class TQRadioButton; +class TQCheckBox; class KURLRequester; class KConfig; diff --git a/kaddressbook/views/contactlistview.h b/kaddressbook/views/contactlistview.h index ff09dbe35..7936333aa 100644 --- a/kaddressbook/views/contactlistview.h +++ b/kaddressbook/views/contactlistview.h @@ -33,7 +33,7 @@ #include <kabc/field.h> -class QDropEvent; +class TQDropEvent; class KAddressBookTableView; class ContactListView; class KIMProxy; diff --git a/kaddressbook/views/kaddressbookcardview.h b/kaddressbook/views/kaddressbookcardview.h index de0120a09..045c1e051 100644 --- a/kaddressbook/views/kaddressbookcardview.h +++ b/kaddressbook/views/kaddressbookcardview.h @@ -31,7 +31,7 @@ #include "kaddressbookview.h" class QDragEntryEvent; -class QDropEvent; +class TQDropEvent; class KConfig; class AddresseeCardView; diff --git a/kaddressbook/views/kaddressbookiconview.h b/kaddressbook/views/kaddressbookiconview.h index 21d9bac8e..dc6dddae0 100644 --- a/kaddressbook/views/kaddressbookiconview.h +++ b/kaddressbook/views/kaddressbookiconview.h @@ -28,7 +28,7 @@ #include <kiconview.h> #include "kaddressbookview.h" -class QIconViewItem; +class TQIconViewItem; class KConfig; class AddresseeIconView; class AddresseeIconViewItem; diff --git a/kaddressbook/views/kaddressbooktableview.h b/kaddressbook/views/kaddressbooktableview.h index ac0515e9e..d45314123 100644 --- a/kaddressbook/views/kaddressbooktableview.h +++ b/kaddressbook/views/kaddressbooktableview.h @@ -38,9 +38,9 @@ #include "kaddressbookview.h" -class QListViewItem; -class QListBox; -class QVBoxLayout; +class TQListViewItem; +class TQListBox; +class TQVBoxLayout; class KConfig; class KIMProxy; diff --git a/kaddressbook/xxport/csvimportdialog.h b/kaddressbook/xxport/csvimportdialog.h index a34f681e6..baa538e03 100644 --- a/kaddressbook/xxport/csvimportdialog.h +++ b/kaddressbook/xxport/csvimportdialog.h @@ -30,13 +30,13 @@ class KURLRequester; -class QButtonGroup; -class QComboBox; -class QCheckBox; -class QLineEdit; -class QPushButton; -class QRadioButton; -class QTable; +class TQButtonGroup; +class TQComboBox; +class TQCheckBox; +class TQLineEdit; +class TQPushButton; +class TQRadioButton; +class TQTable; class CSVImportDialog : public KDialogBase { diff --git a/kaddressbook/xxportselectdialog.h b/kaddressbook/xxportselectdialog.h index 535ad4743..cb620fd39 100644 --- a/kaddressbook/xxportselectdialog.h +++ b/kaddressbook/xxportselectdialog.h @@ -30,11 +30,11 @@ #include "filter.h" -class QButtonGroup; -class QComboBox; -class QListView; -class QListViewItem; -class QRadioButton; +class TQButtonGroup; +class TQComboBox; +class TQListView; +class TQListViewItem; +class TQRadioButton; namespace KAB { class Core; |