diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-10-20 17:59:32 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-10-20 17:59:32 +0000 |
commit | addca63bba3ddaf212e44cdf16e95038b0a5bf3e (patch) | |
tree | 3aeded76d3104689485f6e66ba6a126c2bcf1287 /src/paramproc.cpp | |
parent | 640154682b767ec19cb9ac3972118c10bba8e780 (diff) | |
download | libbu++-addca63bba3ddaf212e44cdf16e95038b0a5bf3e.tar.gz libbu++-addca63bba3ddaf212e44cdf16e95038b0a5bf3e.tar.bz2 libbu++-addca63bba3ddaf212e44cdf16e95038b0a5bf3e.tar.xz libbu++-addca63bba3ddaf212e44cdf16e95038b0a5bf3e.zip |
Just marked Bu::FString::c_str as deprecated, don't use it, it'll go away later.
Diffstat (limited to '')
-rw-r--r-- | src/paramproc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/paramproc.cpp b/src/paramproc.cpp index 67ef44b..c197e9c 100644 --- a/src/paramproc.cpp +++ b/src/paramproc.cpp | |||
@@ -484,7 +484,7 @@ int Bu::ParamProc::help( int argc, char *argv[] ) | |||
484 | Bu::FString sTmp = (*i)->sWord.getStr(); | 484 | Bu::FString sTmp = (*i)->sWord.getStr(); |
485 | if( (*i)->sExtra.getStr() ) | 485 | if( (*i)->sExtra.getStr() ) |
486 | sTmp += (*i)->sExtra.getStr(); | 486 | sTmp += (*i)->sExtra.getStr(); |
487 | printf( fmt, sTmp.c_str() ); | 487 | printf( fmt, sTmp.getStr() ); |
488 | } | 488 | } |
489 | else | 489 | else |
490 | { | 490 | { |