1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

r20926: Modify the classname as well

(This used to be commit 756935f41255a741c63ddf86b99730891bfba8d7)
This commit is contained in:
Simo Sorce 2007-01-20 23:38:46 +00:00 committed by Gerald (Jerry) Carter
parent 58110b8fd9
commit dfb9407c96
3 changed files with 15 additions and 11 deletions

View File

@ -70,6 +70,12 @@ build: info-build \
copy-build-files \
fix-build-rights
swat-only: \
info-build \
generate-script-build \
copy-build-files \
fix-build-rights
api: generate-api-build generate-api-data
@echo
@echo " CREATE COPY OF HTML FILE"

View File

@ -278,18 +278,18 @@ qx.Proto._buildPageSearch = function(module, page)
// Add the vlayout to the page
page.add(vlayout);
var ldifView = new swat.module.ldbbrowse.ldifViewer();
ldifView.set({
var ldifview = new swat.module.ldbbrowse.LdifViewer();
ldifview.set({
top: 130,
left: 10,
right: 10,
bottom: 10
});
fsm.addObject("ldifView", ldifView);
fsm.addObject("LdifView", ldifview);
// Add the output area to the page
page.add(ldifView);
page.add(ldifview);
};
qx.Proto._buildPageBrowse = function(module, page)
@ -372,9 +372,9 @@ qx.Proto._displaySearchResults = function(module, rpcRequest)
var fsm = module.fsm;
// Obtain the table and tableModel objects
var ldifView = fsm.getObject("ldifView");
var ldifview = fsm.getObject("LdifView");
ldifView.reset();
ldifview.reset();
// Obtain the result object
result = rpcRequest.getUserData("result").data;
@ -394,7 +394,7 @@ qx.Proto._displaySearchResults = function(module, rpcRequest)
"\n");
continue;
}
ldifView.appendObject(obj);
ldifview.appendObject(obj);
}
}
else

View File

@ -10,7 +10,7 @@
* Swat LDB Browser class graphical user interface
*/
qx.OO.defineClass("swat.module.ldbbrowse.ldifViewer", qx.ui.embed.HtmlEmbed,
qx.OO.defineClass("swat.module.ldbbrowse.LdifViewer", qx.ui.embed.HtmlEmbed,
function()
{
qx.ui.embed.HtmlEmbed.call(this, "");
@ -24,11 +24,9 @@ function()
this.innerText = "";
});
//qx.OO.changeProperty({ name : "appearance", type : "string", defaultValue : "???" });
qx.OO.addProperty({ name : "innerText", type : "string" });
swat.module.ldbbrowse.ldifViewer.empty = {
qx.Class.empty = {
html : "",
innerText : ""
}