diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:32:27 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:32:27 -0600 |
commit | 9f2c757e1a1694373c11427a00502c2ff4c2d403 (patch) | |
tree | 7d90e91214976a7d23d89ec3474515cf46069704 /keduca/libkeduca/kgallerydialog.cpp | |
parent | cee429821aa6f1acc97fb482d325fb4eb37376ca (diff) | |
download | tdeedu-9f2c757e1a1694373c11427a00502c2ff4c2d403.tar.gz tdeedu-9f2c757e1a1694373c11427a00502c2ff4c2d403.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'keduca/libkeduca/kgallerydialog.cpp')
-rw-r--r-- | keduca/libkeduca/kgallerydialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/keduca/libkeduca/kgallerydialog.cpp b/keduca/libkeduca/kgallerydialog.cpp index 10c6ce43..f7e11da3 100644 --- a/keduca/libkeduca/kgallerydialog.cpp +++ b/keduca/libkeduca/kgallerydialog.cpp @@ -44,7 +44,7 @@ KGalleryDialog::~KGalleryDialog() bool KGalleryDialog::openFile(const KURL &url) { TQString tmpFile; bool returnval=false; - if( KIO::NetAccess::download( url, tmpFile, this ) ) + if( TDEIO::NetAccess::download( url, tmpFile, this ) ) { returnval=loadFile( tmpFile ); if (returnval) { @@ -52,7 +52,7 @@ bool KGalleryDialog::openFile(const KURL &url) { kdDebug()<<"... load successful: "<<_currentURL.url()<<endl; } - KIO::NetAccess::removeTempFile( tmpFile ); + TDEIO::NetAccess::removeTempFile( tmpFile ); }else kdDebug()<<"FileRead::openFile(): download NOT successful: "<<url.url()<<endl; @@ -104,7 +104,7 @@ bool KGalleryDialog::loadFile( const TQString &filename ) /** Read servers */ void KGalleryDialog::configRead() { - KConfig *appconfig = TDEGlobal::config(); + TDEConfig *appconfig = TDEGlobal::config(); TQStringList servers; TQStringList ipservers; TQStringList::Iterator it_ipservers; @@ -140,7 +140,7 @@ void KGalleryDialog::configWrite() { TQStringList servers; TQStringList ipservers; - KConfig *config = TDEGlobal::config(); + TDEConfig *config = TDEGlobal::config(); config->setGroup( "kgallerydialog" ); config->writeEntry("Splitter_size", _split->sizes() ); |