diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-03-02 15:57:34 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-03-02 15:57:34 -0600 |
commit | 7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f (patch) | |
tree | c76702a7f6310fbe9d437e347535422e836e94e9 /kio/tests/kpropsdlgtest.cpp | |
parent | a2a38be7600e2a2c2b49c66902d912ca036a2c0f (diff) | |
parent | 27bbee9a5f9dcda53d8eb23863ee670ad1360e41 (diff) | |
download | tdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.tar.gz tdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdelibs
Diffstat (limited to 'kio/tests/kpropsdlgtest.cpp')
-rw-r--r-- | kio/tests/kpropsdlgtest.cpp | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/kio/tests/kpropsdlgtest.cpp b/kio/tests/kpropsdlgtest.cpp deleted file mode 100644 index 5f9e6ae3b..000000000 --- a/kio/tests/kpropsdlgtest.cpp +++ /dev/null @@ -1,35 +0,0 @@ -#include <kapplication.h> -#include <klocale.h> -#include <kaboutdata.h> -#include <kpropertiesdialog.h> -#include <kcmdlineargs.h> - - -static KCmdLineOptions options[] = -{ - { "+url", "the path or url to the file/dir for which to show properties", 0 }, - KCmdLineLastOption -}; - -int main ( int argc, char** argv ) -{ - KAboutData aboutData("kpropertiesdialogtest", "KIO Properties Dialog Test", "1.0"); - KCmdLineArgs::init(argc, argv, &aboutData); - KCmdLineArgs::addCmdLineOptions( options ); - - KApplication app; - - KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); - if ( args->count() < 1 ) - KCmdLineArgs::usage(); - KURL u = args->url( 0 ); - - // This is the test for the KPropertiesDialog constructor that is now - // documented to NOT work. Passing only a URL means a KIO::stat will happen, - // and asking for the dialog to be modal too creates problems. - // (A non-modal, URL-only dialog is the one kicker uses for app buttons, no problem there) - KPropertiesDialog* dlg = new KPropertiesDialog( u, 0, 0, true /*modal*/, false /*we do exec ourselves*/ ); - dlg->exec(); - - return 0; -} |