xref: /haiku/src/preferences/deskbar/DeskbarPreferences.cpp (revision 4fd62caa9acc437534c41bbb7d3fc9d53e915005)
1 /*
2  * Copyright 2009, Haiku Inc.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Jonas Sundström, jonas@kirilla.com
7  */
8 
9 
10 #include "PreferencesWindow.h"
11 
12 #include <Application.h>
13 #include <Catalog.h>
14 #include <Roster.h>
15 
16 
17 int
18 main(int argc, char **argv)
19 {
20 	B_TRANSLATE_MARK_SYSTEM_NAME_VOID("Deskbar");
21 	BApplication app("application/x-vnd.Haiku-DeskbarPreferences");
22 	be_roster->Launch("application/x-vnd.Be-TSKB", new BMessage(kConfigShow));
23 	return 0;
24 }
25 
26