diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:59:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:59:29 +0000 |
commit | 11f31c37e5fa4889d9989f10272f44845449cb7b (patch) | |
tree | 4383da04a76c497950d957fc6120b0fd0d9082c2 /src/gui/configuration/AudioPropertiesPage.h | |
parent | 832eb69d571e8e518db45d0c0e6fbc0f00690209 (diff) | |
download | rosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.tar.gz rosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.zip |
Initial TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1172292 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui/configuration/AudioPropertiesPage.h')
-rw-r--r-- | src/gui/configuration/AudioPropertiesPage.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/gui/configuration/AudioPropertiesPage.h b/src/gui/configuration/AudioPropertiesPage.h index f21fecc..0c9d15f 100644 --- a/src/gui/configuration/AudioPropertiesPage.h +++ b/src/gui/configuration/AudioPropertiesPage.h @@ -27,13 +27,13 @@ #define _RG_AUDIOPROPERTIESPAGE_H_ #include "TabbedConfigurationPage.h" -#include <qstring.h> +#include <tqstring.h> #include <klocale.h> -class QWidget; -class QPushButton; -class QLabel; +class TQWidget; +class TQPushButton; +class TQLabel; namespace Rosegarden @@ -52,12 +52,12 @@ class AudioPropertiesPage : public TabbedConfigurationPage Q_OBJECT public: AudioPropertiesPage(RosegardenGUIDoc *doc, - QWidget *parent=0, const char *name=0); + TQWidget *parent=0, const char *name=0); virtual void apply(); - static QString iconLabel() { return i18n("Audio"); } - static QString title() { return i18n("Audio Settings"); } - static QString iconName() { return "configure-audio"; } + static TQString iconLabel() { return i18n("Audio"); } + static TQString title() { return i18n("Audio Settings"); } + static TQString iconName() { return "configure-audio"; } protected slots: void slotFileDialog(); @@ -67,7 +67,7 @@ protected slots: // void calculateStats(); - void slotFoundMountPoint(const QString&, + void slotFoundMountPoint(const TQString&, unsigned long kBSize, unsigned long kBUsed, unsigned long kBAvail); @@ -76,11 +76,11 @@ protected: //--------------- Data members --------------------------------- - QLabel *m_path; - QLabel *m_diskSpace; - QLabel *m_minutesAtStereo; + TQLabel *m_path; + TQLabel *m_diskSpace; + TQLabel *m_minutesAtStereo; - QPushButton *m_changePathButton; + TQPushButton *m_changePathButton; }; |