diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 01:04:16 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 01:04:16 -0600 |
commit | 5159cd2beb2e87806a5b54e9991b7895285c9d3e (patch) | |
tree | 9b70e8be47a390f8f4d56ead812ab0c9dad88709 /kio/tests/kmfitest.cpp | |
parent | c17cb900dcf52b8bd6dc300d4f103392900ec2b4 (diff) | |
download | tdelibs-5159cd2beb2e87806a5b54e9991b7895285c9d3e.tar.gz tdelibs-5159cd2beb2e87806a5b54e9991b7895285c9d3e.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kio/tests/kmfitest.cpp')
-rw-r--r-- | kio/tests/kmfitest.cpp | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/kio/tests/kmfitest.cpp b/kio/tests/kmfitest.cpp deleted file mode 100644 index 40530184d..000000000 --- a/kio/tests/kmfitest.cpp +++ /dev/null @@ -1,28 +0,0 @@ -#include <stdio.h> -#include <tqdir.h> -#include <tqfile.h> -#include <kinstance.h> -#include <kurl.h> -#include <kfilemetainfo.h> -#include <kmimetype.h> - -int main (int argc, char **argv) -{ - TDEInstance ins("kmfitest"); - - if (argc < 2) { - printf("usage: %s <file>\n", argv[0]); - return 1; - } - - for (int i = 1; i < argc; i++) { - TQString file = TQFile::decodeName(argv[i]); - tqWarning("File: %s", file.local8Bit().data()); - KMimeType::Ptr p; - p = KMimeType::findByPath(file); - tqWarning("Mime type (findByPath): %s", p->name().latin1()); - KFileMetaInfo meta(file, TQString::null, KFileMetaInfo::TechnicalInfo | KFileMetaInfo::ContentInfo); - } - - return 0; -} |