From fcb11fb1231fd6d64a61112bc420bed57c93fd20 Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini Date: Tue, 6 Apr 2004 08:12:18 +0000 Subject: [PATCH] Added a TODO reminder git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7168 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/app/Application.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/kits/app/Application.cpp b/src/kits/app/Application.cpp index 637a31183c..d23d988598 100644 --- a/src/kits/app/Application.cpp +++ b/src/kits/app/Application.cpp @@ -359,8 +359,10 @@ void BApplication::Quit() bool BApplication::QuitRequested() { // No windows -- nothing to do. + // TODO: Au contraire, we can have opened windows, and we have + // to quit them. + return BLooper::QuitRequested(); -} //------------------------------------------------------------------------------ void BApplication::Pulse() { @@ -905,7 +907,8 @@ bool BApplication::quit_all_windows(bool force) //------------------------------------------------------------------------------ bool BApplication::window_quit_loop(bool, bool) { - return false; // not implemented + // TODO: Implement and use in BApplication::QuitRequested() + return false; } //------------------------------------------------------------------------------ void BApplication::do_argv(BMessage* message)