Code

patch 1750206 by Bruno Dilly - bdilly
authorjucablues <jucablues@users.sourceforge.net>
Fri, 27 Jul 2007 03:18:38 +0000 (03:18 +0000)
committerjucablues <jucablues@users.sourceforge.net>
Fri, 27 Jul 2007 03:18:38 +0000 (03:18 +0000)
Remove "cout" from on_changed() of PrefCombo

src/ui/widget/preferences-widget.cpp

index c45952c839aea9762f5406fbd67cfdd978867790..00d8b5a267e4c360ef3ff86fb18930b865a8f290 100644 (file)
@@ -263,7 +263,6 @@ void PrefCombo::on_changed()
     if (this->is_visible()) //only take action if user changed value
     {    
         prefs_set_int_attribute (_prefs_path.c_str(), _attr.c_str(), _values[this->get_active_row_number()]);
-        std::cout << "combo set: " << _prefs_path << " " << _attr << " " << _values[this->get_active_row_number()] << std::endl;
     }
 }