xref: /haiku/src/preferences/shortcuts/main.cpp (revision 3c6e2dd68577c34d93e17f19711f6245bf6d0915)
1 /*
2  * Copyright 1999-2009 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 "KeyInfos.h"
11 #include "ShortcutsApp.h"
12 
13 
14 int main(int argc, char** argv)
15 {
16 	InitKeyIndices();
17 	ShortcutsApp app;
18 	app.Run();
19 }
20 
21