diff options
Diffstat (limited to 'ktuberling/toplevel.cpp')
-rw-r--r-- | ktuberling/toplevel.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ktuberling/toplevel.cpp b/ktuberling/toplevel.cpp index cec08987..2f3cf8ef 100644 --- a/ktuberling/toplevel.cpp +++ b/ktuberling/toplevel.cpp @@ -212,7 +212,7 @@ void TopLevel::playSound(const TQString &ref) const // Read options from preferences file void TopLevel::readOptions() { - KConfig *config; + TDEConfig *config; TQString option; config = TDEApplication::kApplication()->config(); @@ -236,7 +236,7 @@ void TopLevel::readOptions() // Write options to preferences file void TopLevel::writeOptions() { - KConfig *config; + TDEConfig *config; config = TDEApplication::kApplication()->config(); @@ -304,7 +304,7 @@ void TopLevel::open(const KURL &url) TQString name; - KIO::NetAccess::download(url, name, this); + TDEIO::NetAccess::download(url, name, this); playGround->reset(); @@ -316,7 +316,7 @@ void TopLevel::open(const KURL &url) playGround->repaintAll(); - KIO::NetAccess::removeTempFile( name ); + TDEIO::NetAccess::removeTempFile( name ); } // Save gameboard |