Commit 192aa659 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 736032 - [PATCH] Cleanup redundant if/else branch in src/translator_sr.h

parent 02b35985
......@@ -188,14 +188,14 @@ class TranslatorSerbian : public TranslatorAdapter_1_6_0
/*! This is put above each page as a link to all members of files. */
virtual QCString trFileMembers()
{
if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
{
return "Članovi datoteke";
}
else
{
return "Članovi datoteke";
}
//if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
//{
// return "Članovi datoteke"; // TODO: translate me
//}
//else
//{
return "Članovi datoteke";
//}
}
/*! This is put above each page as a link to all related pages. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment