summaryrefslogtreecommitdiffstats
path: root/src/CLI/dbus.cpp
Commit message (Collapse)AuthorAgeFilesLines
* abrt-cli: report success/failure of reporting. closes bug 71Denys Vlasenko2009-12-111-3/+10
| | | | | | See https://fedorahosted.org/abrt/ticket/71 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* make "abrt-cli --delete randomuuid" report that deletion failed. closes bug 59Denys Vlasenko2009-12-101-21/+37
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* small fix on top of DeleteDebugDump changeDenys Vlasenko2009-12-041-2/+0
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* rename CreateReport -> StartJob, GetJobResult -> CreateReportDenys Vlasenko2009-12-031-4/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* mergeKarel Klic2009-11-091-12/+67
|\
| * s/CC_DBUS_/ABRTD_DBUS_/gDenys Vlasenko2009-11-021-4/+4
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * src/CLI/*: fix an unterminated argv + simplificationsDenys Vlasenko2009-10-311-62/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The fix is: - const char *args[6]; - args[0] = editor; - args[1] = path; + char *args[3]; + args[0] = (char*)editor; + args[1] = (char*)path; + args[2] = NULL; run_command(args); Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * Receive and print Warning and Update messages during remode procedure callsKarel Klic2009-10-301-10/+66
| |
* | GetPluginsInfo implementationKarel Klic2009-11-091-0/+15
|/
* fix warning and whitespace damageDenys Vlasenko2009-10-211-1/+1
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* new_call_msg and send_get_reply_and_unref made staticKarel Klic2009-10-201-2/+2
|
* Initial implementation of crash report editor. Splitted CLI.cpp into ↵Karel Klic2009-10-201-0/+130
multiple files for clarity.