diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-03-18 15:29:24 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-03-18 15:29:24 +0000 |
commit | 1ba71db3c6210fe657031e154d0a8f540f4d1a04 (patch) | |
tree | eff54f523d42bcfb0dbca77720830058122450dd /wizards | |
parent | 7f8dba2b8c6cb80d1d5b47968a227a10725f8041 (diff) |
INTEGRATION: CWS dbwizard4 (1.3.46); FILE MERGED
2005/02/17 13:50:32 bc 1.3.46.1: ##ControlArrangement in FormWizard modified
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/web/data/CGLayout.java | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/wizards/com/sun/star/wizards/web/data/CGLayout.java b/wizards/com/sun/star/wizards/web/data/CGLayout.java index e338c4190cba..bf5e378f5b3b 100644 --- a/wizards/com/sun/star/wizards/web/data/CGLayout.java +++ b/wizards/com/sun/star/wizards/web/data/CGLayout.java @@ -2,9 +2,9 @@ * * $RCSfile: CGLayout.java,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: obo $ $Date: 2004-09-08 14:18:44 $ + * last change: $Author: kz $ $Date: 2005-03-18 16:29:24 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -92,8 +92,10 @@ public class CGLayout extends ConfigSetItem { } - public String getImageURL() { - return FileAccess.connectURLs(getSettings().workPath, "layouts/" + cp_FSName + ".png"); + public Object[] getImageUrls() { + Object[] sRetUrls = new Object[1]; + sRetUrls[0] = FileAccess.connectURLs(getSettings().workPath, "layouts/" + cp_FSName + ".png"); + return sRetUrls; } public Map getTemplates(XMultiServiceFactory xmsf) throws Exception { |