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 )
return xUcb;
}
void MyApp::Main()
int MyApp::Main()
{
Reference< XContentProviderManager > xUcb = InitializeUCB();
LanguageType aRequestedLanguage;
......@@ -299,6 +299,7 @@ void MyApp::Main()
RemoteControl aRC;
Execute();
return EXIT_SUCCESS;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
\ No newline at end of file
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -92,7 +92,7 @@ class MyApp : public Application
public:
MyApp();
void Main();
int Main();
virtual void Property( ApplicationProperty& );
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