diff options
Diffstat (limited to 'examples/PkExampleHelper.cpp')
-rw-r--r-- | examples/PkExampleHelper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/PkExampleHelper.cpp b/examples/PkExampleHelper.cpp index 7b27de58f..3df798f59 100644 --- a/examples/PkExampleHelper.cpp +++ b/examples/PkExampleHelper.cpp @@ -110,13 +110,13 @@ bool PkExampleHelper::set(const TQString &action) if (result == Authority::Yes) { // Caller is authorized so we can perform the action - tqDebug(TQString("Implicit authorization set to ") + action); + tqDebug(TQString("Implicit authorization set to %1").arg(action)); return setValue(action); } else { // Caller is not authorized so the action can't be performed - tqDebug(TQString("Can't set the implicit authorization to ") + action); + tqDebug(TQString("Can't set the implicit authorization to %1").arg(action)); return false; } } |