[haiku-commits] r42963 - haiku/trunk/src/apps/launchbox

  • From: superstippi@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 29 Oct 2011 18:00:26 +0200 (CEST)

Author: stippi
Date: 2011-10-29 18:00:25 +0200 (Sat, 29 Oct 2011)
New Revision: 42963
Changeset: https://dev.haiku-os.org/changeset/42963

Modified:
   haiku/trunk/src/apps/launchbox/support.cpp
Log:
Some coding style fixes.


Modified: haiku/trunk/src/apps/launchbox/support.cpp
===================================================================
--- haiku/trunk/src/apps/launchbox/support.cpp  2011-10-29 15:55:28 UTC (rev 
42962)
+++ haiku/trunk/src/apps/launchbox/support.cpp  2011-10-29 16:00:25 UTC (rev 
42963)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006, Haiku.
+ * Copyright 2006, 2011 Haiku.
  * Distributed under the terms of the MIT License.
  *
  * Authors:
@@ -18,7 +18,7 @@
 #include <Screen.h>
 #include <View.h>
 
-// load_settings
+
 status_t
 load_settings(BMessage* message, const char* fileName, const char* folder)
 {
@@ -41,7 +41,7 @@
        return ret;
 }
 
-// save_settings
+
 status_t
 save_settings(BMessage* message, const char* fileName, const char* folder)
 {
@@ -53,7 +53,8 @@
                        if (folder && (ret = path.Append(folder)) == B_OK)
                                ret = create_directory(path.Path(), 0777);
                        if (ret == B_OK && (ret = path.Append(fileName)) == 
B_OK) {
-                               BFile file(path.Path(), B_WRITE_ONLY | 
B_CREATE_FILE | B_ERASE_FILE);
+                               BFile file(path.Path(), B_WRITE_ONLY | 
B_CREATE_FILE
+                                       | B_ERASE_FILE);
                                if ((ret = file.InitCheck()) == B_OK) {
                                        ret = message->Flatten(&file);
                                        file.Unset();
@@ -64,10 +65,10 @@
        return ret;
 }
 
-// stroke_frame
+
 void
-stroke_frame(BView* v, BRect r, rgb_color left, rgb_color top,
-                        rgb_color right, rgb_color bottom)
+stroke_frame(BView* v, BRect r, rgb_color left, rgb_color top, rgb_color right,
+       rgb_color bottom)
 {
        if (v && r.IsValid()) {
                v->BeginLineArray(4);
@@ -83,11 +84,13 @@
        }
 }
 
-// make_sure_frame_is_on_screen
+
 bool
 make_sure_frame_is_on_screen(BRect& frame, BWindow* window)
 {
-       BScreen* screen = window ? new BScreen(window) : new 
BScreen(B_MAIN_SCREEN_ID);
+       BScreen* screen = window != NULL ? new BScreen(window)
+               : new BScreen(B_MAIN_SCREEN_ID);
+
        bool success = false;
        if (frame.IsValid() && screen->IsValid()) {
                BRect screenFrame = screen->Frame();


Other related posts:

  • » [haiku-commits] r42963 - haiku/trunk/src/apps/launchbox - superstippi