summaryrefslogtreecommitdiff
path: root/Application.h
diff options
context:
space:
mode:
Diffstat (limited to 'Application.h')
-rw-r--r--Application.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Application.h b/Application.h
index 1c542903..b75ded34 100644
--- a/Application.h
+++ b/Application.h
@@ -11,6 +11,7 @@
#include <wx/app.h>
//#include "lib/process_xml.h"
#include "lib/return_codes.h"
+#include <zen/zstring.h>
class Application : public wxApp
@@ -31,7 +32,7 @@ private:
void onEnterEventLoop(wxEvent& event);
void onQueryEndSession(wxEvent& event);
- void launch(const std::vector<wxString>& commandArgs);
+ void launch(const std::vector<Zstring>& commandArgs);
zen::FfsReturnCode returnCode;
};
bgstack15