git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10 a95241bf-73f2-0310-859d-f6bbb57e9c96
23 lines
295 B
C++
23 lines
295 B
C++
#include "MediaPrefsApp.h"
|
|
|
|
|
|
MediaPrefsApp::MediaPrefsApp()
|
|
: BApplication( "application/x-vnd.OBeOS.Media" )
|
|
{
|
|
BRect r;
|
|
|
|
r.Set( 100, 100, 200, 300 );
|
|
window = new MediaPrefsWindow( r );
|
|
window->Show();
|
|
}
|
|
|
|
|
|
int
|
|
main( int argc, char **argv )
|
|
{
|
|
MediaPrefsApp app;
|
|
|
|
app.Run();
|
|
return 0;
|
|
}
|