diff options
-rw-r--r-- | util/fbrun/main.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/fbrun/main.cc b/util/fbrun/main.cc index ff9402c..0a35dbe 100644 --- a/util/fbrun/main.cc +++ b/util/fbrun/main.cc | |||
@@ -1,5 +1,5 @@ | |||
1 | // main.cc for FbRun | 1 | // main.cc for FbRun |
2 | // Copyright (c) 2002 Henrik Kinnunen (fluxgen@linuxmail.org) | 2 | // Copyright (c) 2002-2003 Henrik Kinnunen (fluxgen(at)linuxmail.org) |
3 | // | 3 | // |
4 | // Permission is hereby granted, free of charge, to any person obtaining a | 4 | // Permission is hereby granted, free of charge, to any person obtaining a |
5 | // copy of this software and associated documentation files (the "Software"), | 5 | // copy of this software and associated documentation files (the "Software"), |
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: main.cc,v 1.8 2002/12/05 00:07:39 fluxgen Exp $ | 22 | // $Id: main.cc,v 1.9 2003/04/27 01:04:39 fluxgen Exp $ |
23 | 23 | ||
24 | #include "FbRun.hh" | 24 | #include "FbRun.hh" |
25 | #include "App.hh" | 25 | #include "App.hh" |
@@ -32,7 +32,7 @@ | |||
32 | using namespace std; | 32 | using namespace std; |
33 | 33 | ||
34 | void showUsage(const char *progname) { | 34 | void showUsage(const char *progname) { |
35 | cerr<<"fbrun 1.1.2 : (c) 2002 Henrik Kinnunen"<<endl; | 35 | cerr<<"fbrun 1.1.3 : (c) 2002-2003 Henrik Kinnunen"<<endl; |
36 | cerr<<"Usage: "<< | 36 | cerr<<"Usage: "<< |
37 | progname<<" [arguments]"<<endl<< | 37 | progname<<" [arguments]"<<endl<< |
38 | "Arguments: "<<endl<< | 38 | "Arguments: "<<endl<< |
@@ -130,7 +130,7 @@ int main(int argc, char **argv) { | |||
130 | if (antialias) | 130 | if (antialias) |
131 | fbrun.setAntialias(antialias); | 131 | fbrun.setAntialias(antialias); |
132 | // expand and load command history | 132 | // expand and load command history |
133 | string expanded_filename = StringUtil::expandFilename(history_file); | 133 | string expanded_filename = FbTk::StringUtil::expandFilename(history_file); |
134 | if (!fbrun.loadHistory(expanded_filename.c_str())) | 134 | if (!fbrun.loadHistory(expanded_filename.c_str())) |
135 | cerr<<"FbRun Warning: Failed to load history file: "<<expanded_filename<<endl; | 135 | cerr<<"FbRun Warning: Failed to load history file: "<<expanded_filename<<endl; |
136 | 136 | ||