diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main.cpp b/src/main.cpp index d2cc3c2..376df43 100644 --- a/src/main.cpp +++ b/src/main.cpp | |||
@@ -2,12 +2,12 @@ | |||
2 | //#include "viewerplain.h" | 2 | //#include "viewerplain.h" |
3 | //#include "viewerpercent.h" | 3 | //#include "viewerpercent.h" |
4 | //#include "viewermake.h" | 4 | //#include "viewermake.h" |
5 | #include "paramproc.h" | 5 | #include "bu/paramproc.h" |
6 | #include "staticstring.h" | 6 | #include "bu/fstring.h" |
7 | #include "build.h" | 7 | #include "build.h" |
8 | #include "action.h" | 8 | #include "action.h" |
9 | 9 | ||
10 | class Param : public ParamProc | 10 | class Param : public Bu::ParamProc |
11 | { | 11 | { |
12 | public: | 12 | public: |
13 | Param() : | 13 | Param() : |
@@ -88,7 +88,7 @@ public: | |||
88 | std::string sFile; | 88 | std::string sFile; |
89 | std::string sView; | 89 | std::string sView; |
90 | std::string sDir; | 90 | std::string sDir; |
91 | StaticString sAction; | 91 | Bu::FString sAction; |
92 | //Viewer *pViewer; | 92 | //Viewer *pViewer; |
93 | bool bDebug; | 93 | bool bDebug; |
94 | bool bPostDebug; | 94 | bool bPostDebug; |
@@ -138,7 +138,7 @@ int main( int argc, char *argv[] ) | |||
138 | else | 138 | else |
139 | { | 139 | { |
140 | if( prm.sAction > 0 ) | 140 | if( prm.sAction > 0 ) |
141 | pBuild->execAction( prm.sAction.getString() ); | 141 | pBuild->execAction( prm.sAction.getStr() ); |
142 | else | 142 | else |
143 | pBuild->execAction(""); | 143 | pBuild->execAction(""); |
144 | } | 144 | } |