]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/international.hh
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / flower / include / international.hh
index bba4a5a3305c0303f54810b14594e0b6dd544c4c..d1c71ed08b15f3be19d5970f132a76d9a0dad2c6 100644 (file)
 /**
    Internationalisation: _ ("to be translated") gets "translated" by GNU gettext
 */
-Std_string _ (char const *ch);
+string _ (char const *ch);
 
 /**
    Internationalisation: _f ("Usage: %s [FILE]", "lilypond") gets "translated" by
    GNU gettext
 */
-Std_string _f (char const *format, ...);
-Std_string _f (char const *format, Std_string s, Std_string s2 = "", Std_string s3 = "");
+string _f (char const *format, ...)
+          __attribute__ ((format (printf, 1, 2)));
+string _f (char const *format, string s, string s2 = "", string s3 = "");
 
 #endif // INTERNATIONAL_HH