diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:30:47 -0600 |
commit | cc74f360bb40da3d79f58048f8e8611804980aa6 (patch) | |
tree | c4385d2c16b904757b1c8bb998a4aec6993373f7 /doc | |
parent | 79b21d47bce1ee428affc97534cd8b257232a871 (diff) | |
download | tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.tar.gz tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ksplashml/index.docbook | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/ksplashml/index.docbook b/doc/ksplashml/index.docbook index 15a826872..a3abb27c8 100644 --- a/doc/ksplashml/index.docbook +++ b/doc/ksplashml/index.docbook @@ -814,7 +814,7 @@ class Cfg2k: public ThemeEngineConfig { Q_OBJECT public: - Cfg2k( KConfig * ); + Cfg2k( TDEConfig * ); }; class ObjKsTheme; @@ -828,7 +828,7 @@ public: { return( QString("KSplash2k") ); } - inline const KDialogBase *config( KConfig *kc ) + inline const KDialogBase *config( TDEConfig *kc ) { return new Cfg2k( kc ); } @@ -924,7 +924,7 @@ void Theme2k::readSettings() if( !mTheme ) return; - KConfig *cfg = mTheme->themeConfig(); + TDEConfig *cfg = mTheme->themeConfig(); if( !cfg ) return; @@ -1099,7 +1099,7 @@ appropriate plugin.</para> K_EXPORT_COMPONENT_FACTORY( ksplash2k, KGenericFactory<Theme2k> ); -Cfg2k::Cfg2k( KConfig * ) +Cfg2k::Cfg2k( TDEConfig * ) {} Theme2k::Theme2k( QWidget *parent, const char *name, const QStringList &args @@ -1164,7 +1164,7 @@ void Theme2k::readSettings() if( !mTheme ) return; - KConfig *cfg = mTheme->themeConfig(); + TDEConfig *cfg = mTheme->themeConfig(); if( !cfg ) return; |