xref: /haiku/src/preferences/shortcuts/main.cpp (revision a5bf12376daeded4049521eb17a6cc41192250d9)
1 /*
2  * Copyright 1999-2010 Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Jeremy Friesner
7  */
8 
9 
10 #include <Catalog.h>
11 #include <Locale.h>
12 
13 #include "KeyInfos.h"
14 #include "ShortcutsApp.h"
15 
16 
17 int
18 main(int argc, char** argv)
19 {
20 	InitKeyIndices();
21 	ShortcutsApp app;
22 
23 	BCatalog appCatalog;
24 	be_locale->GetAppCatalog(&appCatalog);
25 
26 	app.Run();
27 }
28 
29