You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.7 KiB
36 lines
1.7 KiB
From 80e0d16e248aad690c14dbfff88881fab6d79415 Mon Sep 17 00:00:00 2001
|
|
From: David Faure <faure@kde.org>
|
|
Date: Sun, 6 Mar 2016 19:09:50 +0100
|
|
Subject: [PATCH 2/4] xdg-mime parses ktraderclient5's output! So revert to
|
|
outputting all props by default, and make --short output just paths.
|
|
|
|
---
|
|
ktraderclient/ktraderclient.cpp | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/ktraderclient/ktraderclient.cpp b/ktraderclient/ktraderclient.cpp
|
|
index 31330c1..fc233ca 100644
|
|
--- a/ktraderclient/ktraderclient.cpp
|
|
+++ b/ktraderclient/ktraderclient.cpp
|
|
@@ -46,7 +46,7 @@ int main( int argc, char **argv )
|
|
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("servicetype"), i18n("A servicetype, like KParts/ReadOnlyPart or KMyApp/Plugin"), QLatin1String("servicetype")));
|
|
parser.addOption(QCommandLineOption(QStringList() << QLatin1String("constraint"), i18n("A constraint expressed in the trader query language"), QLatin1String("constraint")));
|
|
|
|
- parser.addOption(QCommandLineOption(QStringList() << QLatin1String("properties"), i18n("Output all properties")));
|
|
+ parser.addOption(QCommandLineOption(QStringList() << QLatin1String("short"), i18n("Output only paths to desktop files")));
|
|
|
|
parser.process(app);
|
|
aboutData.processCommandLine(&parser);
|
|
@@ -54,7 +54,7 @@ int main( int argc, char **argv )
|
|
const QString mimetype = parser.value("mimetype");
|
|
QString servicetype = parser.value("servicetype");
|
|
const QString constraint = parser.value("constraint");
|
|
- const bool outputProperties = parser.isSet("properties");
|
|
+ const bool outputProperties = !parser.isSet("short");
|
|
|
|
if ( mimetype.isEmpty() && servicetype.isEmpty() )
|
|
parser.showHelp();
|
|
--
|
|
2.7.3
|
|
|