workspace-indicator: remove debug spew

This commit is contained in:
Giovanni Campagna
2012-03-01 21:10:41 +01:00
parent 1463a6481e
commit f14ae5f3c9
-10
View File
@@ -47,8 +47,6 @@ const WorkspaceNameModel = new GObject.Class({
return;
this._preventChanges = true;
print('reloading from settings');
let newNames = this._settings.get_strv(WORKSPACE_KEY);
let i = 0;
@@ -68,8 +66,6 @@ const WorkspaceNameModel = new GObject.Class({
this.set(iter, [this.Columns.LABEL], [newNames[i]]);
}
printerr('three');
this._preventChanges = false;
},
@@ -78,8 +74,6 @@ const WorkspaceNameModel = new GObject.Class({
return;
this._preventChanges = true;
print('on_row_changed: ' + path.to_string());
let index = path.get_indices()[0];
let names = this._settings.get_strv(WORKSPACE_KEY);
@@ -101,8 +95,6 @@ const WorkspaceNameModel = new GObject.Class({
return;
this._preventChanges = true;
print('on_row_inserted: ' + path.to_string());
let index = path.get_indices()[0];
let names = this._settings.get_strv(WORKSPACE_KEY);
let label = this.get_value(iter, this.Columns.LABEL) || '';
@@ -118,8 +110,6 @@ const WorkspaceNameModel = new GObject.Class({
return;
this._preventChanges = true;
print('on_row_deleted: ' + path.to_string());
let index = path.get_indices()[0];
let names = this._settings.get_strv(WORKSPACE_KEY);