further qt_ vs. _ fix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5867 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2002-12-18 23:26:21 +00:00
parent 8f217402f9
commit a96d1108cb

View 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