[cluttermm] Whitespace corrections for the previous commit.



commit 449d361025333cf4c6984b39bf3694f3b4f421ea
Author: Murray Cumming <murrayc murrayc com>
Date:   Mon Mar 17 11:17:19 2014 +0100

    Whitespace corrections for the previous commit.

 clutter/src/stage.ccg |   14 +++++++-------
 clutter/src/stage.hg  |   30 ++++++++++++++++--------------
 2 files changed, 23 insertions(+), 21 deletions(-)
---
diff --git a/clutter/src/stage.ccg b/clutter/src/stage.ccg
index b531db3..e30c23e 100644
--- a/clutter/src/stage.ccg
+++ b/clutter/src/stage.ccg
@@ -42,14 +42,14 @@ void Stage::set_key_focus()
 
 Point Stage::get_minimum_size() const
 {
-       guint x(0);
-       guint y(0);
+  guint x(0);
+  guint y(0);
 
-       guint* px = &x;
-       guint* py = &y;
-       clutter_stage_get_minimum_size(const_cast<ClutterStage*>(gobj()), px, py);
+  guint* px = &x;
+  guint* py = &y;
+  clutter_stage_get_minimum_size(const_cast<ClutterStage*>(gobj()), px, py);
 
-
-       return Point(int(*px), int(*py));
+  return Point(int(*px), int(*py));
 }
+
 } //namespace Clutter
diff --git a/clutter/src/stage.hg b/clutter/src/stage.hg
index e3c5e6c..c9357fb 100644
--- a/clutter/src/stage.hg
+++ b/clutter/src/stage.hg
@@ -67,20 +67,21 @@ class Stage :
   // Implements Container and Scriptable via Group.
 
 protected:
-/**
-* Creates a new stage. Every Clutter::Actor must be placed on a stage, and the
-* stage first created automatically occupies the window generated when
-*  Clutter::main() is run.
-*
-* Clutter can support more than one stage at once; however the ability to
-* support multiple stages depends on the current backend. Use
-* feature_available() and CLUTTER::FEATURE_STAGE_MULTIPLE to check at runtime
-* whether a backend supports multiple stages.
-
-* @return a new stage.
-*
-* @newin{0.8}
-*/
+
+  /**
+   * Creates a new stage. Every Clutter::Actor must be placed on a stage, and the
+   * stage first created automatically occupies the window generated when
+   *  Clutter::maiAdded new properties and functions to wrap clutter 1.7.6n() is run.
+   *
+   * Clutter can support more than one stage at once; however the ability to
+   * support multiple stages depends on the current backend. Use
+   * feature_available() and CLUTTER::FEATURE_STAGE_MULTIPLE to check at runtime
+   * whether a backend supports multiple stages.
+   *
+   * @return a new stage.
+   *
+   * @newin{0.8}
+   */
   _CTOR_DEFAULT()
 
 public:
@@ -140,6 +141,7 @@ public:
 
   _WRAP_METHOD(void set_minimum_size(guint width, guint height), clutter_stage_set_minimum_size)
   _WRAP_METHOD(void get_minimum_size(guint& width, guint& height), clutter_stage_get_minimum_size)
+
   /**
   * Returns the minimum size for the stage.  The Point contains the x_minimum and y minimum.
   *


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]