diff libgui/graphics/ListBoxControl.cc @ 18501:523878f76518 gui-release

style fix: eliminate lines of slashes to separate functions.
author John W. Eaton <jwe@octave.org>
date Thu, 20 Feb 2014 15:10:07 -0500
parents 49877d3be064
children fb96b7f55242
line wrap: on
line diff
--- a/libgui/graphics/ListBoxControl.cc	Thu Feb 20 14:58:56 2014 -0500
+++ b/libgui/graphics/ListBoxControl.cc	Thu Feb 20 15:10:07 2014 -0500
@@ -30,13 +30,9 @@
 #include "ListBoxControl.h"
 #include "Utils.h"
 
-//////////////////////////////////////////////////////////////////////////////
-
 namespace QtHandles
 {
 
-//////////////////////////////////////////////////////////////////////////////
-
 static void updateSelection (QListWidget* list, const Matrix& value)
 {
   octave_idx_type n = value.numel ();
@@ -64,8 +60,6 @@
     }
 }
 
-//////////////////////////////////////////////////////////////////////////////
-
 ListBoxControl* ListBoxControl::create (const graphics_object& go)
 {
   Object* parent = Object::parentObject (go);
@@ -81,8 +75,6 @@
   return 0;
 }
 
-//////////////////////////////////////////////////////////////////////////////
-
 ListBoxControl::ListBoxControl (const graphics_object& go, QListWidget* list)
      : BaseControl (go, list), m_blockCallback (false)
 {
@@ -121,14 +113,10 @@
 	   SLOT (itemSelectionChanged (void)));
 }
 
-//////////////////////////////////////////////////////////////////////////////
-
 ListBoxControl::~ListBoxControl (void)
 {
 }
 
-//////////////////////////////////////////////////////////////////////////////
-
 void ListBoxControl::update (int pId)
 {
   uicontrol::properties& up = properties<uicontrol> ();
@@ -161,8 +149,6 @@
     }
 }
 
-//////////////////////////////////////////////////////////////////////////////
-
 void ListBoxControl::itemSelectionChanged (void)
 {
   if (! m_blockCallback)
@@ -181,6 +167,4 @@
     }
 }
 
-//////////////////////////////////////////////////////////////////////////////
-
 }; // namespace QtHandles