Files
haiku-beta6/src/preferences/keymap/KeymapApplication.cpp
T
Adrien Destugues ad34440edc -Removed unseless reference to adler32 in hashmapcatalog
-Localized Keymap preflet and translated it to french


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33790 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-10-27 15:48:01 +00:00

41 lines
628 B
C++

/*
* Copyright 2004-2006 Haiku Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
* Sandor Vroemisse
* Jérôme Duval
*/
#include "KeymapApplication.h"
KeymapApplication::KeymapApplication()
: BApplication("application/x-vnd.Haiku-Keymap")
{
be_locale->GetAppCatalog(&fCatalog);
// create the window
fWindow = new KeymapWindow();
fWindow->Show();
}
void
KeymapApplication::MessageReceived(BMessage* message)
{
BApplication::MessageReceived(message);
}
// #pragma mark -
int
main(int, char**)
{
new KeymapApplication;
be_app->Run();
delete be_app;
return B_OK;
}