[haiku-commits] r33454 - haiku/trunk/src/servers/app

  • From: superstippi@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 6 Oct 2009 11:21:16 +0200 (CEST)

Author: stippi
Date: 2009-10-06 11:21:16 +0200 (Tue, 06 Oct 2009)
New Revision: 33454
Changeset: http://dev.haiku-os.org/changeset/33454/haiku

Modified:
   haiku/trunk/src/servers/app/ScreenManager.cpp
Log:
Leave out the cool new remote screen feature from the libbe_test app_server.
Otherwise libnetwork.so needs to be dragged in, which has some issues.


Modified: haiku/trunk/src/servers/app/ScreenManager.cpp
===================================================================
--- haiku/trunk/src/servers/app/ScreenManager.cpp       2009-10-06 09:19:57 UTC 
(rev 33453)
+++ haiku/trunk/src/servers/app/ScreenManager.cpp       2009-10-06 09:21:16 UTC 
(rev 33454)
@@ -93,7 +93,7 @@
        BAutolock locker(this);
        int32 added = 0;
 
-       // ToDo: don't ignore the wish list
+       // TODO: don't ignore the wish list
 
        for (int32 i = 0; i < fScreenList.CountItems(); i++) {
                screen_item* item = fScreenList.ItemAt(i);
@@ -104,6 +104,7 @@
                }
        }
 
+#if TEST_MODE == 0
        if (added == 0 && target != NULL) {
                // there's a specific target screen we want to initialize
                // TODO: right now we only support remote screens, but we could
@@ -117,6 +118,7 @@
                        }
                }
        }
+#endif // TEST_MODE == 0
 
        return added > 0 ? B_OK : B_ENTRY_NOT_FOUND;
 }


Other related posts:

  • » [haiku-commits] r33454 - haiku/trunk/src/servers/app - superstippi