Commit 112537844f9db05c642dd5e01424b949afc6c1a0

Authored by Perry Werneck
1 parent f93e9e0f

Cleaning debug messages.

src/objects/toolbar/actions.c
... ... @@ -81,7 +81,7 @@
81 81 }
82 82 }
83 83  
84   - debug("%s(%s)=%p",__FUNCTION__,name,action);
  84 +// debug("%s(%s)=%p",__FUNCTION__,name,action);
85 85  
86 86 if(!action) {
87 87 g_warning("Can't find action \"%s\"",name);
... ...
src/objects/toolbar/models.c
... ... @@ -190,7 +190,7 @@
190 190 const struct _contents *model = (const struct _contents *) g_object_get_data(menuitem, I_("pw3270_model_data"));
191 191 const char *name = (const char *) g_object_get_data(menuitem, I_("pw3270_property_name"));
192 192  
193   - debug("%s(%s,%d)",__FUNCTION__,name,model->value);
  193 +// debug("%s(%s,%d)",__FUNCTION__,name,model->value);
194 194 g_object_set(widget,name,model->value,NULL);
195 195  
196 196 }
... ... @@ -210,7 +210,7 @@
210 210 const gchar * name = g_object_get_data(G_OBJECT(menu), I_("pw3270_property_name"));
211 211 g_object_get(widget,name,&value,NULL);
212 212  
213   - debug("%s(%p,%s)=%d",__FUNCTION__,widget,name,value);
  213 +// debug("%s(%p,%s)=%d",__FUNCTION__,widget,name,value);
214 214  
215 215 gtk_container_foreach(menu,(GtkCallback) set_toggle_menu_item,&value);
216 216  
... ...
src/objects/window/window.c
... ... @@ -843,7 +843,7 @@
843 843  
844 844 // Get settings
845 845 g_autofree gchar * path = g_strconcat("/apps/" PACKAGE_NAME "/", g_get_application_name(), "/window/",NULL);
846   - debug("path=%s",path);
  846 +// debug("path=%s",path);
847 847  
848 848 #ifdef DEBUG
849 849  
... ... @@ -864,7 +864,7 @@
864 864 "br.com.bb." PACKAGE_NAME ".window",
865 865 TRUE);
866 866  
867   - debug("schema %s=%p path=%s","br.com.bb." PACKAGE_NAME ".window",schema,path);
  867 +// debug("schema %s=%p path=%s","br.com.bb." PACKAGE_NAME ".window",schema,path);
868 868  
869 869 GSettings * settings = g_settings_new_full(schema, NULL, path);
870 870  
... ...