gnomemm r1846 - cluttermm_tutorial/trunk/examples/stage



Author: murrayc
Date: Sun Dec 14 10:53:07 2008
New Revision: 1846
URL: http://svn.gnome.org/viewvc/gnomemm?rev=1846&view=rev

Log:
Sentences should end with some punctuation.

Modified:
   cluttermm_tutorial/trunk/examples/stage/stage.cc

Modified: cluttermm_tutorial/trunk/examples/stage/stage.cc
==============================================================================
--- cluttermm_tutorial/trunk/examples/stage/stage.cc	(original)
+++ cluttermm_tutorial/trunk/examples/stage/stage.cc	Sun Dec 14 10:53:07 2008
@@ -41,17 +41,17 @@
   {
     Clutter::init(&argc, &argv);
 
-    // Get the stage and set its size and color
+    // Get the stage and set its size and color:
     Glib::RefPtr<Clutter::Stage> stage = Clutter::Stage::get_default();
     stage->set_size(200, 200);
     stage->set_color(Clutter::Color(0, 0, 0)); // black
 
     stage->show();
 
-    // Connect a signal handler to handle mouse clicks
+    // Connect a signal handler to handle mouse clicks:
     stage->signal_button_press_event().connect(&on_stage_button_press);
 
-    // Start the main loop, so we can respond to events
+    // Start the main loop, so we can respond to events:
     Clutter::main();
   }
   catch (const Glib::Error& error)



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