xref: /haiku/src/preferences/shortcuts/ShortcutsApp.cpp (revision 8d2bf6953e851d431fc67de1bc970c40afa79e9f)
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  *		Fredrik Modéen
8  */
9 
10 
11 #include "ShortcutsApp.h"
12 
13 #include <Catalog.h>
14 
15 #include "ShortcutsWindow.h"
16 
17 
18 #undef B_TRANSLATION_CONTEXT
19 #define B_TRANSLATION_CONTEXT "ShortcutsApp"
20 
21 
22 ShortcutsApp::ShortcutsApp()
23 	:
24 	BApplication("application/x-vnd.Haiku-Shortcuts")
25 {
26 }
27 
28 
29 void
30 ShortcutsApp::ReadyToRun()
31 {
32 	ShortcutsWindow* window = new ShortcutsWindow();
33 	window->Show();
34 }
35 
36 
37 ShortcutsApp::~ShortcutsApp()
38 {
39 }
40