1/*
2 * Copyright 1999-2009 Jeremy Friesner
3 * Copyright 2009-2010 Haiku, Inc. All rights reserved.
4 * Distributed under the terms of the MIT License.
5 *
6 * Authors:
7 *		Jeremy Friesner
8 *		Fredrik Mod��en
9 */
10
11
12#include "ShortcutsApp.h"
13
14#include <Catalog.h>
15
16#include "ShortcutsWindow.h"
17
18
19#undef B_TRANSLATION_CONTEXT
20#define B_TRANSLATION_CONTEXT "ShortcutsApp"
21
22
23ShortcutsApp::ShortcutsApp()
24	:
25	BApplication("application/x-vnd.Haiku-Shortcuts")
26{
27}
28
29
30void
31ShortcutsApp::ReadyToRun()
32{
33	ShortcutsWindow* window = new ShortcutsWindow();
34	window->Show();
35}
36
37
38ShortcutsApp::~ShortcutsApp()
39{
40}
41