Skip to content

Commit

Permalink
Bug 736020 - [PATCH] Fix identical code for different branches in src…
Browse files Browse the repository at this point in the history
…/translator_tw.h
  • Loading branch information
Dimitri van Heesch committed Sep 23, 2014
1 parent 46e83b4 commit 79dedb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/translator_tw.h
Original file line number Diff line number Diff line change
Expand Up @@ -1952,7 +1952,7 @@ class TranslatorChinesetraditional : public Translator
// single is true implies a single file
QCString result=(QCString)"本服務的文件由以下的檔案"
"所產生";
if (single) result+=":"; else result+=":";
result+=":";
return result;
}
/** UNO IDL singleton page */
Expand All @@ -1961,7 +1961,7 @@ class TranslatorChinesetraditional : public Translator
// single is true implies a single file
QCString result=(QCString)"本singleton的文件由下面的檔案"
"所產生";
if (single) result+=":"; else result+=":";
result+=":";
return result;
}

Expand Down

0 comments on commit 79dedb6

Please sign in to comment.