diff --git a/src/apps/mediaplayer/MainApp.cpp b/src/apps/mediaplayer/MainApp.cpp index cbbdb0b664..fb5c5ff3db 100644 --- a/src/apps/mediaplayer/MainApp.cpp +++ b/src/apps/mediaplayer/MainApp.cpp @@ -129,6 +129,13 @@ MainApp::AboutRequested() } +bool +MainApp::QuitRequested() +{ + return true; +} + + int main() { diff --git a/src/apps/mediaplayer/MainApp.h b/src/apps/mediaplayer/MainApp.h index 774c92a023..23ca380e0f 100644 --- a/src/apps/mediaplayer/MainApp.h +++ b/src/apps/mediaplayer/MainApp.h @@ -41,6 +41,7 @@ private: void ArgvReceived(int32 argc, char **argv); void MessageReceived(BMessage *msg); void AboutRequested(); + bool QuitRequested(); private: BWindow * fFirstWindow;