]> git.lyx.org Git - features.git/commitdiff
further qt_ vs. _ fix
authorJohn Levon <levon@movementarian.org>
Wed, 18 Dec 2002 23:26:21 +0000 (23:26 +0000)
committerJohn Levon <levon@movementarian.org>
Wed, 18 Dec 2002 23:26:21 +0000 (23:26 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5867 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt2/Alert_pimpl.C

index 4c4b933da84c0f6f5aa4629a13e35542b840b479..283da5a8b3f33481d8cd93a35c8b49072d4620bc 100644 (file)
@@ -19,6 +19,7 @@
 #include <qlineedit.h>
 #include "ui/QAskForTextDialog.h"
 #include "qt_helpers.h"
+#include "gettext.h"
 
 #include <algorithm>
 
@@ -57,7 +58,7 @@ pair<bool, string> const
 askForText_pimpl(string const & msg, string const & dflt)
 {
 #if USE_BOOST_FORMAT
-       boost::format fmt(qt_("LyX: %1$s"));
+       boost::format fmt(_("LyX: %1$s"));
        fmt % msg;
        string const title = fmt.str();
 #else