From: jucablues Date: Fri, 27 Jul 2007 03:18:38 +0000 (+0000) Subject: patch 1750206 by Bruno Dilly - bdilly X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=10233f4d8b628c765ea0b54c84da614cadf0f2c3;p=inkscape.git patch 1750206 by Bruno Dilly - bdilly Remove "cout" from on_changed() of PrefCombo --- diff --git a/src/ui/widget/preferences-widget.cpp b/src/ui/widget/preferences-widget.cpp index c45952c83..00d8b5a26 100644 --- a/src/ui/widget/preferences-widget.cpp +++ b/src/ui/widget/preferences-widget.cpp @@ -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; } }