diff options
author | Slávek Banko <[email protected]> | 2019-01-13 20:37:35 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-01-13 20:37:48 +0100 |
commit | e4b82430e90a75dba17808c0575b60c59e5cebc2 (patch) | |
tree | 059a382764e02ef2e165d5c2dcccec6a86f435c6 /ksirc | |
parent | 524a6ac3fc0c293ec3db04f7a5b5035753ba6059 (diff) | |
download | tdenetwork-e4b82430e90a75dba17808c0575b60c59e5cebc2.tar.gz tdenetwork-e4b82430e90a75dba17808c0575b60c59e5cebc2.zip |
Fix empty translation.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit dca06b0505ba4de236055aac0d5cf635fdc85709)
Diffstat (limited to 'ksirc')
-rw-r--r-- | ksirc/chanparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ksirc/chanparser.cpp b/ksirc/chanparser.cpp index 04dfc6a4..ad729924 100644 --- a/ksirc/chanparser.cpp +++ b/ksirc/chanparser.cpp @@ -284,7 +284,7 @@ parseResult * ChannelParser::parseSSFEPrompt(TQString string) // "'[pP]' " gives 4 spaces if(string.length() < 5) - caption = i18n(""); + caption = ""; else caption = string.mid(3); prompt_active = TRUE; |