diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 00:55:57 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 00:55:57 -0600 |
commit | 1073dcc9a1775b7b66698151d4fd8fefb1504eb4 (patch) | |
tree | dd7c877d3558da11273ddc35bb7bea0bc5360b20 /libktorrent | |
parent | 65ff20b6664653c2ead851a228629641f3be03bd (diff) | |
download | ktorrent-1073dcc9a1775b7b66698151d4fd8fefb1504eb4.tar.gz ktorrent-1073dcc9a1775b7b66698151d4fd8fefb1504eb4.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'libktorrent')
-rw-r--r-- | libktorrent/interfaces/exitoperation.h | 2 | ||||
-rw-r--r-- | libktorrent/settings.kcfgc | 2 | ||||
-rw-r--r-- | libktorrent/torrent/cache.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/cachefile.cpp | 4 | ||||
-rw-r--r-- | libktorrent/torrent/httptracker.cpp | 6 | ||||
-rw-r--r-- | libktorrent/torrent/movedatafilesjob.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/multifilecache.cpp | 2 | ||||
-rw-r--r-- | libktorrent/torrent/torrentcontrol.cpp | 2 | ||||
-rw-r--r-- | libktorrent/util/autorotatelogjob.h | 2 | ||||
-rw-r--r-- | libktorrent/util/fileops.cpp | 2 | ||||
-rw-r--r-- | libktorrent/util/functions.cpp | 2 | ||||
-rw-r--r-- | libktorrent/util/mmapfile.cpp | 4 | ||||
-rw-r--r-- | libktorrent/util/waitjob.cpp | 2 | ||||
-rw-r--r-- | libktorrent/util/waitjob.h | 2 |
14 files changed, 18 insertions, 18 deletions
diff --git a/libktorrent/interfaces/exitoperation.h b/libktorrent/interfaces/exitoperation.h index e45dab4..2a33f24 100644 --- a/libktorrent/interfaces/exitoperation.h +++ b/libktorrent/interfaces/exitoperation.h @@ -21,7 +21,7 @@ #define KTEXITOPERATION_H #include <tqobject.h> -#include <kio/job.h> +#include <tdeio/job.h> namespace kt { diff --git a/libktorrent/settings.kcfgc b/libktorrent/settings.kcfgc index f5a6064..f6817f5 100644 --- a/libktorrent/settings.kcfgc +++ b/libktorrent/settings.kcfgc @@ -1,4 +1,4 @@ -# Code generation options for kconfig_compiler +# Code generation options for tdeconfig_compiler File=ktorrent.kcfg ClassName=Settings Singleton=true diff --git a/libktorrent/torrent/cache.h b/libktorrent/torrent/cache.h index 1aff44b..0b3cc4d 100644 --- a/libktorrent/torrent/cache.h +++ b/libktorrent/torrent/cache.h @@ -20,7 +20,7 @@ #ifndef BTCACHE_H #define BTCACHE_H -#include <kio/job.h> +#include <tdeio/job.h> class TQStringList; diff --git a/libktorrent/torrent/cachefile.cpp b/libktorrent/torrent/cachefile.cpp index 7f02b6b..dc5c640 100644 --- a/libktorrent/torrent/cachefile.cpp +++ b/libktorrent/torrent/cachefile.cpp @@ -29,9 +29,9 @@ #include <unistd.h> #include <errno.h> #include <tqfile.h> -#include <kio/netaccess.h> +#include <tdeio/netaccess.h> #include <klocale.h> -#include <kfileitem.h> +#include <tdefileitem.h> #include <util/array.h> #include <util/fileops.h> #include <torrent/globals.h> diff --git a/libktorrent/torrent/httptracker.cpp b/libktorrent/torrent/httptracker.cpp index 5bbaae8..249a60e 100644 --- a/libktorrent/torrent/httptracker.cpp +++ b/libktorrent/torrent/httptracker.cpp @@ -27,9 +27,9 @@ #include <util/error.h> #include <util/waitjob.h> #include <interfaces/exitoperation.h> -#include <kio/job.h> -#include <kio/netaccess.h> -#include <kio/scheduler.h> +#include <tdeio/job.h> +#include <tdeio/netaccess.h> +#include <tdeio/scheduler.h> #include "bnode.h" #include "httptracker.h" #include "torrentcontrol.h" diff --git a/libktorrent/torrent/movedatafilesjob.h b/libktorrent/torrent/movedatafilesjob.h index e64a62f..ff5d0bc 100644 --- a/libktorrent/torrent/movedatafilesjob.h +++ b/libktorrent/torrent/movedatafilesjob.h @@ -20,7 +20,7 @@ #ifndef BTMOVEDATAFILESJOB_H #define BTMOVEDATAFILESJOB_H -#include <kio/job.h> +#include <tdeio/job.h> namespace bt { diff --git a/libktorrent/torrent/multifilecache.cpp b/libktorrent/torrent/multifilecache.cpp index c6cd8b7..ff5c8a9 100644 --- a/libktorrent/torrent/multifilecache.cpp +++ b/libktorrent/torrent/multifilecache.cpp @@ -22,7 +22,7 @@ #include <tqstringlist.h> #include <tqfileinfo.h> #include <klocale.h> -#include <kio/netaccess.h> +#include <tdeio/netaccess.h> #include <util/file.h> #include <util/fileops.h> #include <util/functions.h> diff --git a/libktorrent/torrent/torrentcontrol.cpp b/libktorrent/torrent/torrentcontrol.cpp index 4ac512b..207b709 100644 --- a/libktorrent/torrent/torrentcontrol.cpp +++ b/libktorrent/torrent/torrentcontrol.cpp @@ -22,7 +22,7 @@ #include <tqfile.h> #include <klocale.h> #include <kmessagebox.h> -#include <kfiledialog.h> +#include <tdefiledialog.h> #include <tqtextstream.h> #include <util/log.h> #include <util/error.h> diff --git a/libktorrent/util/autorotatelogjob.h b/libktorrent/util/autorotatelogjob.h index b1e4af1..bde477a 100644 --- a/libktorrent/util/autorotatelogjob.h +++ b/libktorrent/util/autorotatelogjob.h @@ -20,7 +20,7 @@ #ifndef BTAUTOROTATELOGJOB_H #define BTAUTOROTATELOGJOB_H -#include <kio/job.h> +#include <tdeio/job.h> #include <cstdlib> namespace bt diff --git a/libktorrent/util/fileops.cpp b/libktorrent/util/fileops.cpp index 5aadae3..a3e2bf1 100644 --- a/libktorrent/util/fileops.cpp +++ b/libktorrent/util/fileops.cpp @@ -26,7 +26,7 @@ #include <unistd.h> #include <errno.h> #include <klocale.h> -#include <kio/netaccess.h> +#include <tdeio/netaccess.h> #include <sys/stat.h> #include <sys/types.h> #include <fcntl.h> diff --git a/libktorrent/util/functions.cpp b/libktorrent/util/functions.cpp index 3c73f36..b53a88e 100644 --- a/libktorrent/util/functions.cpp +++ b/libktorrent/util/functions.cpp @@ -28,7 +28,7 @@ #include <netinet/in.h> #include <arpa/inet.h> #include <netdb.h> -#include <kio/netaccess.h> +#include <tdeio/netaccess.h> #include <klocale.h> #include <kmimetype.h> #include <kglobal.h> diff --git a/libktorrent/util/mmapfile.cpp b/libktorrent/util/mmapfile.cpp index 811acd7..398ce34 100644 --- a/libktorrent/util/mmapfile.cpp +++ b/libktorrent/util/mmapfile.cpp @@ -30,8 +30,8 @@ #include <sys/stat.h> #include <errno.h> #include <tqfile.h> -#include <kfileitem.h> -#include <kio/netaccess.h> +#include <tdefileitem.h> +#include <tdeio/netaccess.h> #include <klocale.h> #include <util/error.h> #include <util/log.h> diff --git a/libktorrent/util/waitjob.cpp b/libktorrent/util/waitjob.cpp index ed00f89..e04369e 100644 --- a/libktorrent/util/waitjob.cpp +++ b/libktorrent/util/waitjob.cpp @@ -18,7 +18,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include <torrent/globals.h> -#include <kio/netaccess.h> +#include <tdeio/netaccess.h> #include "waitjob.h" #include "log.h" diff --git a/libktorrent/util/waitjob.h b/libktorrent/util/waitjob.h index 232546a..b4c44bc 100644 --- a/libktorrent/util/waitjob.h +++ b/libktorrent/util/waitjob.h @@ -21,7 +21,7 @@ #define BTWAITJOB_H #include <tqtimer.h> -#include <kio/job.h> +#include <tdeio/job.h> #include <tqvaluelist.h> #include <interfaces/exitoperation.h> #include "constants.h" |