From 0b11b6e1736a1846aea6c1dd4b9cbd1acfebb86e Mon Sep 17 00:00:00 2001 From: Rafal Szczesniak Date: Tue, 24 Apr 2007 09:35:55 +0000 Subject: r22501: dispatching events explicitly is not necessary. rafal (This used to be commit 01b1b2b36b05b49a34becbbd20bb4abdc0e86d1e) --- webapps/swat/source/class/swat/module/ldbbrowse/LdbBrowse.js | 1 - webapps/swat/source/class/swat/module/netmgr/UsersView.js | 1 - 2 files changed, 2 deletions(-) (limited to 'webapps') diff --git a/webapps/swat/source/class/swat/module/ldbbrowse/LdbBrowse.js b/webapps/swat/source/class/swat/module/ldbbrowse/LdbBrowse.js index 935eb18dcd..7e3f96c8b5 100644 --- a/webapps/swat/source/class/swat/module/ldbbrowse/LdbBrowse.js +++ b/webapps/swat/source/class/swat/module/ldbbrowse/LdbBrowse.js @@ -42,7 +42,6 @@ qx.Proto.initialAppear = function(module) // Force the global database to be opened var dbName = module.fsm.getObject("dbName"); dbName.setSelected(dbName.getList().getFirstChild()); - dbName.dispatchEvent(new qx.event.type.Event("changeSelection"), true); }; diff --git a/webapps/swat/source/class/swat/module/netmgr/UsersView.js b/webapps/swat/source/class/swat/module/netmgr/UsersView.js index 2e87a27b4b..a54bbf570f 100644 --- a/webapps/swat/source/class/swat/module/netmgr/UsersView.js +++ b/webapps/swat/source/class/swat/module/netmgr/UsersView.js @@ -69,7 +69,6 @@ function(fsm, domainName) // Set default selection and dispatch the respective event to initialise the view cmbDomain.setSelected(selectedItem); - cmbDomain.dispatchEvent(new qx.event.type.Event("changeSelected"), true); // Create an empty list view with sample column this._columns = { username : { label: "Username", width: 150, type: "text" }}; -- cgit