X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxfr1.C;h=ee35ba89820594536181a8052c500dc860f860fa;hb=a858be7332e331e0244e4dba7b0931b6072ffd3d;hp=b455e36fd12e5a187d5da810232274955adbfed7;hpb=0eccdd1c3613e5170deb77b22174dd0afde833e9;p=lyx.git diff --git a/src/lyxfr1.C b/src/lyxfr1.C index b455e36fd1..ee35ba8982 100644 --- a/src/lyxfr1.C +++ b/src/lyxfr1.C @@ -1,18 +1,18 @@ /* This file is part of -* ====================================================== -* -* LyX, The Document Processor -* -* Copyright (C) 1995 Matthias Ettrich, -* Copyright (C) 1995-1998 The LyX Team. -* -*======================================================*/ + * ====================================================== + * + * LyX, The Document Processor + * + * Copyright 1995 Matthias Ettrich, + * Copyright 1995-1999 The LyX Team. + * + * ======================================================*/ #include -#include -#include -#include +#include +#include +#include #ifdef __GNUG__ #pragma implementation @@ -26,12 +26,13 @@ #include "lyxfr1.h" #include "lyxfunc.h" #include "lyxscreen.h" -#include "error.h" +#include "debug.h" #include "lyxtext.h" #include "gettext.h" #include "LyXView.h" #include "lyx_gui_misc.h" #include "minibuffer.h" +#include "support/lstrings.h" extern BufferView *current_view; // called too many times in this file... extern MiniBuffer *minibuffer; @@ -234,8 +235,7 @@ void LyXFindReplace1::SearchReplaceAllCB() if( replace_count == 1 ) { minibuffer->Set(_("1 string has been replaced.")); } else { - string str; - str += replace_count; + string str = tostr(replace_count); str += _(" strings have been replaced."); minibuffer->Set(str); }