diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:37:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:37:21 -0600 |
commit | 86d8364ac704bdc8ad2dfcf52307d9626cfac567 (patch) | |
tree | 97d3ac2c2f60780d9a1de4f82caac7cb27534501 /kmobile/kmobileitem.cpp | |
parent | a9bde819f2b421dcc44741156e75eca4bb5fb4f4 (diff) | |
download | tdepim-86d8364ac704bdc8ad2dfcf52307d9626cfac567.tar.gz tdepim-86d8364ac704bdc8ad2dfcf52307d9626cfac567.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kmobile/kmobileitem.cpp')
-rw-r--r-- | kmobile/kmobileitem.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kmobile/kmobileitem.cpp b/kmobile/kmobileitem.cpp index 2471f667e..dec9924a4 100644 --- a/kmobile/kmobileitem.cpp +++ b/kmobile/kmobileitem.cpp @@ -29,7 +29,7 @@ #define PRINT_DEBUG kdDebug() << "KMobileItem: " -KMobileItem::KMobileItem(TQIconView *parent, KConfig *_config, KService::Ptr service) +KMobileItem::KMobileItem(TQIconView *parent, TDEConfig *_config, KService::Ptr service) : TQObject(parent), TQIconViewItem(parent), m_dev(0L) { config = _config; @@ -51,7 +51,7 @@ KMobileItem::KMobileItem(TQIconView *parent, KConfig *_config, KService::Ptr ser } /* restore this item from the config file */ -KMobileItem::KMobileItem(TQIconView *parent, KConfig *_config, int reload_index) +KMobileItem::KMobileItem(TQIconView *parent, TDEConfig *_config, int reload_index) : TQObject(parent), TQIconViewItem(parent), m_dev(0L) { config = _config; @@ -129,7 +129,7 @@ void KMobileItem::writeKonquMimeFile() const if (comment.isEmpty()) comment = KMobileDevice::defaultClassName(KMobileDevice::Unclassified); - KConfig conf( getKonquMimeType()+".desktop", false, true, "mime" ); + TDEConfig conf( getKonquMimeType()+".desktop", false, true, "mime" ); conf.setDesktopGroup(); conf.writeEntry("Encoding", "UTF-8"); conf.writeEntry("Comment", comment ); |