Renamed src/prefs to "preferences", as the directory is usually called in BeOS.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13263 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
/* main - the application and startup code
|
||||
**
|
||||
** Copyright 2001 Dr. Zoidberg Enterprises. All rights reserved.
|
||||
*/
|
||||
|
||||
|
||||
#include "ConfigWindow.h"
|
||||
|
||||
#include <Application.h>
|
||||
|
||||
|
||||
class MailConfigApp : public BApplication
|
||||
{
|
||||
public:
|
||||
MailConfigApp();
|
||||
~MailConfigApp();
|
||||
};
|
||||
|
||||
|
||||
MailConfigApp::MailConfigApp() : BApplication("application/x-vnd.Be-mprf")
|
||||
{
|
||||
(new ConfigWindow())->Show();
|
||||
}
|
||||
|
||||
|
||||
MailConfigApp::~MailConfigApp()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
// #pragma mark -
|
||||
|
||||
|
||||
int main(int argc,char **argv)
|
||||
{
|
||||
(new MailConfigApp())->Run();
|
||||
|
||||
delete be_app;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user