Skip to content

Commit

Permalink
Empty strings should not be wrapped for gettext
Browse files Browse the repository at this point in the history
Fixes:
src/frontend.cpp:1009: warning: Empty msgid.  It is reserved by GNU gettext:
src/frontend.cpp:1011: warning: Empty msgid.  It is reserved by GNU gettext:
  • Loading branch information
past-due authored and KJeff01 committed Feb 16, 2018
1 parent d9ea4bf commit 68fb304
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1006,9 +1006,9 @@ void videoOptionsDisableResolutionButtons(QString toolTip)
void videoOptionsEnableResolutionButtons()
{
widgSetButtonState(psWScreen, FRONTEND_RESOLUTION, 0);
widgSetTip(psWScreen, FRONTEND_RESOLUTION, _(""));
widgSetTip(psWScreen, FRONTEND_RESOLUTION, "");
widgSetButtonState(psWScreen, FRONTEND_RESOLUTION_R, 0);
widgSetTip(psWScreen, FRONTEND_RESOLUTION_R, _(""));
widgSetTip(psWScreen, FRONTEND_RESOLUTION_R, "");
}

static char const *videoOptionsWindowModeString()
Expand Down

0 comments on commit 68fb304

Please sign in to comment.