From e21c70f0573896c6503317f4684f2f421a57fd11 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 19 Dec 2011 11:40:04 -0600 Subject: Remove additional unneeded tq method conversions (cherry picked from commit f91149819be7e7f45e68f22876f3c0062a11d4b9) --- src/modules/action/libkviaction.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/modules/action/libkviaction.cpp') diff --git a/src/modules/action/libkviaction.cpp b/src/modules/action/libkviaction.cpp index ead09cd..9404b8b 100644 --- a/src/modules/action/libkviaction.cpp +++ b/src/modules/action/libkviaction.cpp @@ -109,10 +109,10 @@ static bool action_kvs_cmd_trigger(KviKvsModuleCommandCall * c) a->activate(); } else { if(!c->switches()->find('q',"quiet")) - c->warning(__tr2qs("The action \"%1\" is disabled").tqarg(szName)); + c->warning(__tr2qs("The action \"%1\" is disabled").arg(szName)); } } else { - c->warning(__tr2qs("The action \"%1\" does not exist").tqarg(szName)); + c->warning(__tr2qs("The action \"%1\" does not exist").arg(szName)); } return true; @@ -158,7 +158,7 @@ static bool action_kvs_cmd_enable(KviKvsModuleCommandCall * c) if(!a->isEnabled())a->setEnabled(true); } else { if(!c->switches()->find('q',"quiet")) - c->warning(__tr2qs("The action \"%1\" does not exist").tqarg(szName)); + c->warning(__tr2qs("The action \"%1\" does not exist").arg(szName)); } return true; @@ -206,7 +206,7 @@ static bool action_kvs_cmd_disable(KviKvsModuleCommandCall * c) if(a->isEnabled())a->setEnabled(false); } else { if(!c->switches()->find('q',"quiet")) - c->warning(__tr2qs("The action \"%1\" does not exist").tqarg(szName)); + c->warning(__tr2qs("The action \"%1\" does not exist").arg(szName)); } return true; @@ -252,11 +252,11 @@ static bool action_kvs_cmd_destroy(KviKvsModuleCommandCall * c) a->suicide(); } else { if(!c->switches()->find('q',"quiet")) - c->warning(__tr2qs("The action \"%1\" is a core action and cannot be destroyed").tqarg(szName)); + c->warning(__tr2qs("The action \"%1\" is a core action and cannot be destroyed").arg(szName)); } } else { if(!c->switches()->find('q',"quiet")) - c->warning(__tr2qs("The action \"%1\" does not exist").tqarg(szName)); + c->warning(__tr2qs("The action \"%1\" does not exist").arg(szName)); } return true; @@ -417,7 +417,7 @@ static bool action_kvs_cmd_create(KviKvsModuleCallbackCommandCall * c) if(old->isKviUserActionNeverOverrideThis()) old->suicide(); else { - c->warning(__tr2qs("The action \"%1\" is already defined as core action and cannot be overridden").tqarg(szName)); + c->warning(__tr2qs("The action \"%1\" is already defined as core action and cannot be overridden").arg(szName)); return false; } } -- cgit v1.2.3