diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:13:55 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:13:55 -0600 |
commit | 5e6e2fd8352a86fb70f804472a6346868483623a (patch) | |
tree | dfc010a4f5fb5624b094cdb01295591c8879debf /src/gui/configuration/ConfigurationPage.h | |
parent | 59ff04ffaf48f18383b39ea6da17b8e18b6b50c3 (diff) | |
download | rosegarden-5e6e2fd8352a86fb70f804472a6346868483623a.tar.gz rosegarden-5e6e2fd8352a86fb70f804472a6346868483623a.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src/gui/configuration/ConfigurationPage.h')
-rw-r--r-- | src/gui/configuration/ConfigurationPage.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/configuration/ConfigurationPage.h b/src/gui/configuration/ConfigurationPage.h index bf0ccd9..cc23da5 100644 --- a/src/gui/configuration/ConfigurationPage.h +++ b/src/gui/configuration/ConfigurationPage.h @@ -32,7 +32,7 @@ #include <tqwidget.h> -class KConfig; +class TDEConfig; namespace Rosegarden @@ -55,11 +55,11 @@ public: TQWidget *parent=0, const char *name=0) : TQWidget(parent, name), m_doc(doc), m_cfg(0), m_pageIndex(0) {} - ConfigurationPage(KConfig *cfg, + ConfigurationPage(TDEConfig *cfg, TQWidget *parent=0, const char *name=0) : TQWidget(parent, name), m_doc(0), m_cfg(cfg), m_pageIndex(0) {} - ConfigurationPage(RosegardenGUIDoc *doc, KConfig *cfg, + ConfigurationPage(RosegardenGUIDoc *doc, TDEConfig *cfg, TQWidget *parent=0, const char *name=0) : TQWidget(parent, name), m_doc(doc), m_cfg(cfg), m_pageIndex(0) {} @@ -67,14 +67,14 @@ public: /** * Should set the page up (ie. read the setting from the @ref - * KConfig object into the widgets) after creating it in the + * TDEConfig object into the widgets) after creating it in the * constructor. Called from @ref ConfigureDialog. */ // virtual void setup() = 0; /** * Should apply the changed settings (ie. read the settings from - * the widgets into the @ref KConfig object). Called from @ref + * the widgets into the @ref TDEConfig object). Called from @ref * ConfigureDialog. */ virtual void apply() = 0; @@ -94,7 +94,7 @@ protected: //--------------- Data members --------------------------------- RosegardenGUIDoc* m_doc; - KConfig* m_cfg; + TDEConfig* m_cfg; int m_pageIndex; }; |