diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:12:44 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:12:44 -0600 |
commit | d46a1fe34693137bbc38a0a79593af420ea0914b (patch) | |
tree | 038dbf461083bda9b7a6398908572591a80012d3 /plugins/webinterface | |
parent | 604bf3f969d880708ea9a1affce0b304c29e6ff5 (diff) | |
download | ktorrent-d46a1fe34693137bbc38a0a79593af420ea0914b.tar.gz ktorrent-d46a1fe34693137bbc38a0a79593af420ea0914b.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'plugins/webinterface')
-rw-r--r-- | plugins/webinterface/php_interface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/webinterface/php_interface.cpp b/plugins/webinterface/php_interface.cpp index 41693f3..4df085d 100644 --- a/plugins/webinterface/php_interface.cpp +++ b/plugins/webinterface/php_interface.cpp @@ -140,7 +140,7 @@ namespace kt TorrentFileInterface & file = (*i)->getTorrentFile(j); out << TQString("\"%1\" => array(\n").arg(j); out << TQString("\"name\" => \"%1\",\n").arg(file.getPath()); - out << TQString("\"size\" => \"%1\",\n").arg(KIO::convertSize(file.getSize())); + out << TQString("\"size\" => \"%1\",\n").arg(TDEIO::convertSize(file.getSize())); out << TQString("\"perc_done\" => \"%1\",\n").arg(file.getDownloadPercentage()); out << TQString("\"status\" => \"%1\"\n").arg(file.getPriority()); out << TQString(")\n"); |