aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
authorGravatar Fabio Bas2012-04-10 13:54:36 +0000
committerGravatar Fabio Bas2012-04-10 13:54:36 +0000
commiteef6e74f52f7cd774adcd8b7518940ee0a7cf704 (patch)
tree4eb08e9d25f4cee71930b0d73bc6c24df92eafe0 /src/modules
parentfixed filetransferwindow window not opening up automatically (diff)
downloadKVIrc-eef6e74f52f7cd774adcd8b7518940ee0a7cf704.tar.gz
KVIrc-eef6e74f52f7cd774adcd8b7518940ee0a7cf704.tar.bz2
KVIrc-eef6e74f52f7cd774adcd8b7518940ee0a7cf704.zip
fixed 2 formt strings in object webview
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6137 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/objects/KvsObject_webView.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/objects/KvsObject_webView.cpp b/src/modules/objects/KvsObject_webView.cpp
index c6ec225a6..b46240c5b 100644
--- a/src/modules/objects/KvsObject_webView.cpp
+++ b/src/modules/objects/KvsObject_webView.cpp
@@ -1050,7 +1050,7 @@ KVSO_CLASS_FUNCTION(webView,styleProperty)
else if(KviQString::equalCI(szStyleResolveStrategy, "ComputedStyle")) styleStrategy=QWebElement::ComputedStyle;
else
{
- c->warning(__tr2qs_ctx("Unknown styleResolveStrategy: 'Q' - Switching to default CascadedStyle strategy","objects"),&szStyleResolveStrategy);
+ c->warning(__tr2qs_ctx("Unknown styleResolveStrategy: '%Q' - Switching to default CascadedStyle strategy","objects"),&szStyleResolveStrategy);
}
}
c->returnValue()->setString(element.styleProperty(szName, styleStrategy));
@@ -1190,7 +1190,7 @@ KVSO_CLASS_FUNCTION(webView,appendWebViewActionToMenu)
}
if(!pAction)
{
- c->warning(__tr2qs_ctx("Unknown action 'Q':","objects"),&szActionName);
+ c->warning(__tr2qs_ctx("Unknown action '%Q':","objects"),&szActionName);
return true;
}
if(!szIcon.isEmpty())