summaryrefslogtreecommitdiffstats
path: root/smb4k/core/smb4kbookmarkhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'smb4k/core/smb4kbookmarkhandler.cpp')
-rw-r--r--smb4k/core/smb4kbookmarkhandler.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/smb4k/core/smb4kbookmarkhandler.cpp b/smb4k/core/smb4kbookmarkhandler.cpp
index 0788f89..18455cf 100644
--- a/smb4k/core/smb4kbookmarkhandler.cpp
+++ b/smb4k/core/smb4kbookmarkhandler.cpp
@@ -44,7 +44,7 @@
#include "smb4knetworkitems.h"
#include "smb4kbookmark.h"
-using namespace Smb4KGlobal;
+using namespace Smb4TDEGlobal;
Smb4KBookmarkHandler::Smb4KBookmarkHandler( TQValueList<Smb4KHostItem *> *hosts,
@@ -53,7 +53,7 @@ TQObject *parent, const char *name )
{
// First we need the directory.
KStandardDirs *stddir = new KStandardDirs();
- TQString dir = locateLocal( "data", "smb4k", KGlobal::instance() );
+ TQString dir = locateLocal( "data", "smb4k", TDEGlobal::instance() );
if ( !stddir->exists( dir ) )
{
@@ -144,7 +144,7 @@ void Smb4KBookmarkHandler::writeBookmarkList( const TQValueList<Smb4KBookmark *>
m_bookmarks = list;
}
- TQFile file( locateLocal( "data", "smb4k/bookmarks", KGlobal::instance() ) );
+ TQFile file( locateLocal( "data", "smb4k/bookmarks", TDEGlobal::instance() ) );
if ( file.open( IO_WriteOnly ) )
{
@@ -190,7 +190,7 @@ void Smb4KBookmarkHandler::writeBookmarkList( const TQValueList<Smb4KBookmark *>
void Smb4KBookmarkHandler::loadBookmarks()
{
- TQFile file( locateLocal( "data", "smb4k/bookmarks", KGlobal::instance() ) );
+ TQFile file( locateLocal( "data", "smb4k/bookmarks", TDEGlobal::instance() ) );
TQStringList contents;