summaryrefslogtreecommitdiffstats
path: root/parts/bookmarks/bookmarks_config.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parts/bookmarks/bookmarks_config.cpp')
-rw-r--r--parts/bookmarks/bookmarks_config.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/parts/bookmarks/bookmarks_config.cpp b/parts/bookmarks/bookmarks_config.cpp
index c5ef7191..f49b76c8 100644
--- a/parts/bookmarks/bookmarks_config.cpp
+++ b/parts/bookmarks/bookmarks_config.cpp
@@ -32,7 +32,7 @@ BookmarksConfig::~BookmarksConfig()
*/
void BookmarksConfig::writeConfig()
{
- TDEConfig *config = kapp->config();
+ TDEConfig *config = tdeApp->config();
config->setGroup("Bookmarks");
config->writeEntry("Context", _context );
@@ -49,7 +49,7 @@ void BookmarksConfig::writeConfig()
*/
void BookmarksConfig::readConfig()
{
- TDEConfig *config = kapp->config();
+ TDEConfig *config = tdeApp->config();
config->setGroup("Bookmarks");
_context = config->readPropertyEntry( "Context", 5 ).toInt();
@@ -134,5 +134,3 @@ void BookmarksConfig::setToken( TQString const & token )
{
_token = token;
}
-
-// kate: space-indent off; indent-width 4; tab-width 4; show-tabs off;