diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
commit | f008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch) | |
tree | 8e9244c4d4957c36be81e15b566b4aa5ea26c982 /kspread/dialogs/kspread_dlg_sort.h | |
parent | 1210f27b660efb7b37ff43ec68763e85a403471f (diff) | |
download | koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip |
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kspread/dialogs/kspread_dlg_sort.h')
-rw-r--r-- | kspread/dialogs/kspread_dlg_sort.h | 63 |
1 files changed, 32 insertions, 31 deletions
diff --git a/kspread/dialogs/kspread_dlg_sort.h b/kspread/dialogs/kspread_dlg_sort.h index 3ac29512..2abe5bda 100644 --- a/kspread/dialogs/kspread_dlg_sort.h +++ b/kspread/dialogs/kspread_dlg_sort.h @@ -30,16 +30,16 @@ #include <kdialogbase.h> -#include <qstringlist.h> +#include <tqstringlist.h> -class QCheckBox; -class QComboBox; -class QLabel; -class QLineEdit; -class QPushButton; -class QRadioButton; -class QTabWidget; -class QWidget; +class TQCheckBox; +class TQComboBox; +class TQLabel; +class TQLineEdit; +class TQPushButton; +class TQRadioButton; +class TQTabWidget; +class TQWidget; namespace KSpread { @@ -49,6 +49,7 @@ class View; class SortDialog : public KDialogBase { Q_OBJECT + TQ_OBJECT public: enum Orientation @@ -57,13 +58,13 @@ class SortDialog : public KDialogBase SortRows=1 }; - SortDialog( View * parent, const char * name = 0, + SortDialog( View * tqparent, const char * name = 0, bool modal = false ); ~SortDialog(); protected: Orientation guessDataOrientation(); - QRect sourceArea(); + TQRect sourceArea(); private slots: void sortKey2textChanged( int ); @@ -77,33 +78,33 @@ class SortDialog : public KDialogBase View * m_pView; - QStringList m_listColumn; - QStringList m_listRow; + TQStringList m_listColumn; + TQStringList m_listRow; - QWidget * m_page1; - QWidget * m_page2; + TQWidget * m_page1; + TQWidget * m_page2; - QTabWidget * m_tabWidget; + TQTabWidget * m_tabWidget; - QComboBox * m_sortKey1; - QComboBox * m_sortOrder1; - QComboBox * m_sortKey2; - QComboBox * m_sortOrder2; - QComboBox * m_sortKey3; - QComboBox * m_sortOrder3; + TQComboBox * m_sortKey1; + TQComboBox * m_sortOrder1; + TQComboBox * m_sortKey2; + TQComboBox * m_sortOrder2; + TQComboBox * m_sortKey3; + TQComboBox * m_sortOrder3; - QCheckBox * m_useCustomLists; - QComboBox * m_customList; + TQCheckBox * m_useCustomLists; + TQComboBox * m_customList; - QRadioButton * m_sortColumn; - QRadioButton * m_sortRow; + TQRadioButton * m_sortColumn; + TQRadioButton * m_sortRow; - QCheckBox * m_copyLayout; - QCheckBox * m_firstRowOrColHeader; - QCheckBox * m_respectCase; + TQCheckBox * m_copyLayout; + TQCheckBox * m_firstRowOrColHeader; + TQCheckBox * m_respectCase; - /*QComboBox * m_outputSheet; - QLineEdit * m_outputCell;*/ + /*TQComboBox * m_outputSheet; + TQLineEdit * m_outputCell;*/ }; } // namespace KSpread |