From f5aca1a1b402bd7ebc944dc6e6fe65828d863365 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 20 Jan 2011 02:14:08 +0000 Subject: Bu::FString is now String, and there's a shell script to fix any other programs that were using fstring, I hope. --- src/tools/viewcsv.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/tools/viewcsv.cpp') diff --git a/src/tools/viewcsv.cpp b/src/tools/viewcsv.cpp index d81525e..9be1291 100644 --- a/src/tools/viewcsv.cpp +++ b/src/tools/viewcsv.cpp @@ -38,7 +38,7 @@ public: return 0; } - Bu::FString sFileIn; + Bu::String sFileIn; bool bHeader; }; @@ -245,10 +245,10 @@ public: setHeaderRow( !bHeaderRow ); } - Bu::FString prompt( const Bu::FString &sPrompt ) + Bu::String prompt( const Bu::String &sPrompt ) { int maxx, maxy; - Bu::FString sStr; + Bu::String sStr; RegEx re( sPrompt ); @@ -292,7 +292,7 @@ public: sysCaret.reset(); } - void findNext( const Bu::FString &sTerm ) + void findNext( const Bu::String &sTerm ) { RegEx re( sTerm ); @@ -398,7 +398,7 @@ int main( int argc, char *argv[] ) CsvView view( doc ); view.setHeaderRow( opt.bHeader ); - Bu::FString sSearchTerm; + Bu::String sSearchTerm; bool bRun = true; do -- cgit v1.2.3