diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:38:54 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:38:54 -0600 |
commit | da1522385e5367bae56b90fac55c4355e475905b (patch) | |
tree | bfa432864dbf322feb4ed3a878f1222ee8ea7727 /parts/fileview | |
parent | b9e542d0c805e9adee3a67e44532d5321032e21e (diff) | |
download | tdevelop-da1522385e5367bae56b90fac55c4355e475905b.tar.gz tdevelop-da1522385e5367bae56b90fac55c4355e475905b.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'parts/fileview')
-rw-r--r-- | parts/fileview/fileviewpart.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/parts/fileview/fileviewpart.cpp b/parts/fileview/fileviewpart.cpp index 3873c112..a6c79495 100644 --- a/parts/fileview/fileviewpart.cpp +++ b/parts/fileview/fileviewpart.cpp @@ -112,9 +112,9 @@ void FileViewPart::loadSettings() unknown = TQColor( white ), defaultColor = TQColor( white ); - KConfig *cfg = instance()->config(); + TDEConfig *cfg = instance()->config(); - KConfigGroupSaver gs( cfg, "VCS Colors" ); + TDEConfigGroupSaver gs( cfg, "VCS Colors" ); vcsColors.added = cfg->readColorEntry( "FileAddedColor", &added ); vcsColors.updated = cfg->readColorEntry( "FileUpdatedColor", &updated ); vcsColors.sticky = cfg->readColorEntry( "FileStickyColor", &sticky ); @@ -130,9 +130,9 @@ void FileViewPart::loadSettings() void FileViewPart::storeSettings() { - KConfig *cfg = instance()->config(); + TDEConfig *cfg = instance()->config(); // VCS colors - KConfigGroupSaver gs( cfg, "VCS Colors" ); + TDEConfigGroupSaver gs( cfg, "VCS Colors" ); cfg->writeEntry( "FileAddedColor", vcsColors.added ); cfg->writeEntry( "FileUpdatedColor", vcsColors.updated ); cfg->writeEntry( "FileStickyColor", vcsColors.sticky ); |