wok annotate xfe/stuff/gcc-4.patch @ rev 4230

Fix: patch xfe to build with gcc-4.x
author Christophe Lincoln <pankso@slitaz.org>
date Thu Sep 24 15:03:32 2009 +0200 (2009-09-24)
parents
children
rev   line source
pankso@4230 1 --- src/ViewWindow.cpp Thu Sep 24 14:54:17 2009
pankso@4230 2 +++ src/ViewWindow.cpp Thu Sep 24 14:55:42 2009
pankso@4230 3 @@ -655,7 +655,7 @@
pankso@4230 4 {
pankso@4230 5 FXString buf=viewer->getText();
pankso@4230 6 const char* text=buf.text();
pankso@4230 7 - char *p = strstr(&text[pos],str.text());
pankso@4230 8 + const char *p = strstr(&text[pos],str.text());
pankso@4230 9 if(!p)
pankso@4230 10 return -1;
pankso@4230 11 return (p-text);