]> git.lyx.org Git - lyx.git/blobdiff - src/gettext.C
get rid of turds, no.po update and remove some warnings
[lyx.git] / src / gettext.C
index 3c3c0e253f603feb292f528fd5d1049f359320b8..49158949ce3a10148bbcccefc77478799881b80b 100644 (file)
@@ -7,6 +7,9 @@
 
 char const * _(char const * str)
 {
+       // I'd rather have an Assert on str, we should not allow
+       // null pointers here. Lgb
+       // Assert(str);
        if (str && str[0])
                return gettext(str);
        else