Skip to content

Commit

Permalink
Bug 736032 - [PATCH] Cleanup redundant if/else branch in src/translat…
Browse files Browse the repository at this point in the history
…or_sr.h
  • Loading branch information
Dimitri van Heesch committed Sep 9, 2014
1 parent 02b3598 commit 192aa65
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/translator_sr.h
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 192aa65

Please sign in to comment.