]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfr1.C
removed a warning from screen and added CFLAGS in lyx.spec.in.
[lyx.git] / src / lyxfr1.C
index 80bfa1807013dc19955014fe83f4710e89cd4199..ee35ba89820594536181a8052c500dc860f860fa 100644 (file)
@@ -10,9 +10,9 @@
 
 #include <config.h>
 
-#include <ctype.h>
-#include <string.h>
-#include <stdlib.h>
+#include <cctype>
+#include <cstring>
+#include <cstdlib>
 
 #ifdef __GNUG__
 #pragma implementation
@@ -32,6 +32,7 @@
 #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);
                }