Hi,
I'm going on an assumption that the 3-layer removal is a directory
structure change putting the sdk under the AOO program directory.
I have a question on the directory layout of sdk on platforms other than
linux.
In netbeans plugin current code is broken for AOO4.
private void skeletonmaker(AddOn addon) {
String platform = PlatformInfo.getPlatformBinDir(); // returns
"linux"
String sdkPath = (String)wiz.getProperty("SdkPath"); // returns
"/opt/openoffice4/sdk"
String sdkBinPath =
sdkPath.concat(File.separator).concat(platform).concat(File.separator).concat("bin");
// returns "/opt/openoffice4/sdk/linux/bin"
if
(OpenOfficeLocation.getOpenOfficeLocation().isThreeLayerOffice()) {
sdkBinPath = sdkPath.concat(File.separator).concat("bin");
// would return "/opt/openoffice4/sdk/bin"
}
Since isThreeLayerOffice is false, if I change this to:
if (!OpenOfficeLocation.getOpenOfficeLocation().isThreeLayerOffice()) {
sdkBinPath = sdkPath.concat(File.separator).concat("bin");
// returns "/opt/openoffice4/sdk/bin"
}
It now works.
My question is would this break other platforms?
Thanks,
Carl
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org