From e62201bacd8df29289c53337edbb27d12436cd9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 9 Dec 2005 13:44:54 +0000 Subject: [PATCH] * not all possible flags were shown due to a stupid bug... * added B_SAME_POSITION_IN_ALL_WORKSPACES for the build under Haiku (and libbe_test) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15437 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tests/servers/app/look_and_feel/LookAndFeel.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/tests/servers/app/look_and_feel/LookAndFeel.cpp b/src/tests/servers/app/look_and_feel/LookAndFeel.cpp index 120471cc5f..15e6dbbe05 100644 --- a/src/tests/servers/app/look_and_feel/LookAndFeel.cpp +++ b/src/tests/servers/app/look_and_feel/LookAndFeel.cpp @@ -119,9 +119,13 @@ Window::Window(BRect frame, window_look look, window_feel feel) {"Not Vertically Resizable", B_NOT_V_RESIZABLE}, {"Outline Resize", B_OUTLINE_RESIZE}, {"Accept First Click", B_WILL_ACCEPT_FIRST_CLICK}, - {"Not Anchored On Activate", B_NOT_ANCHORED_ON_ACTIVATE} + {"Not Anchored On Activate", B_NOT_ANCHORED_ON_ACTIVATE}, + {"Avoid Front", B_AVOID_FRONT}, +#if defined(__HAIKU__) || defined(HAIKU_TARGET_PLATFORM_LIBBE_TEST) + {"Same Position In All Workspaces", B_SAME_POSITION_IN_ALL_WORKSPACES}, +#endif }; - for (uint32 i = 0; i < sizeof(looks) / sizeof(looks[0]); i++) { + for (uint32 i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) { BMessage* message = new BMessage(kMsgUpdateFlags); message->AddInt32("flag", flags[i].flag); BMenuItem* item = new BMenuItem(flags[i].name, message);