libroot/posix/stdio: Remove unused portions.
[haiku.git] / src / preferences / shortcuts / ShortcutsApp.cpp
blob79f67fc66a5c099c07ed1f26e5bcde7dd69ebef8
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.
6 * Authors:
7 * Jeremy Friesner
8 * Fredrik Modéen
9 */
12 #include "ShortcutsApp.h"
14 #include <Catalog.h>
16 #include "ShortcutsWindow.h"
19 #undef B_TRANSLATION_CONTEXT
20 #define B_TRANSLATION_CONTEXT "ShortcutsApp"
23 ShortcutsApp::ShortcutsApp()
25 BApplication("application/x-vnd.Haiku-Shortcuts")
30 void
31 ShortcutsApp::ReadyToRun()
33 ShortcutsWindow* window = new ShortcutsWindow();
34 window->Show();
38 ShortcutsApp::~ShortcutsApp()