Kaydet (Commit) 87dfd625 authored tarafından Caolán McNamara's avatar Caolán McNamara

propogate exit code out to main

üst d966837f
...@@ -270,7 +270,7 @@ Reference< XContentProviderManager > InitializeUCB( void ) ...@@ -270,7 +270,7 @@ Reference< XContentProviderManager > InitializeUCB( void )
return xUcb; return xUcb;
} }
void MyApp::Main() int MyApp::Main()
{ {
Reference< XContentProviderManager > xUcb = InitializeUCB(); Reference< XContentProviderManager > xUcb = InitializeUCB();
LanguageType aRequestedLanguage; LanguageType aRequestedLanguage;
...@@ -299,6 +299,7 @@ void MyApp::Main() ...@@ -299,6 +299,7 @@ void MyApp::Main()
RemoteControl aRC; RemoteControl aRC;
Execute(); Execute();
return EXIT_SUCCESS;
} }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
\ No newline at end of file
...@@ -92,7 +92,7 @@ class MyApp : public Application ...@@ -92,7 +92,7 @@ class MyApp : public Application
public: public:
MyApp(); MyApp();
void Main(); int Main();
virtual void Property( ApplicationProperty& ); virtual void Property( ApplicationProperty& );
virtual PlugInDispatcher* GetDispatcher(); virtual PlugInDispatcher* GetDispatcher();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment