View | Details | Raw Unified | Return to issue 61056
Collapse All | Expand All

(-)desktop.org/macosx/source/main.applescript (-2 / +5 lines)
Lines 183-189 Link Here
183
	
183
	
184
	-- if nothing really was found, display an error message.
184
	-- if nothing really was found, display an error message.
185
	if (whichserver is equal to "NOXSERVER") then
185
	if (whichserver is equal to "NOXSERVER") then
186
		display dialog getMessage("ERROR_NEED_X11")
186
		display dialog getMessage("ERROR_NEED_X11") buttons {"Quit", "More Info"} default button "More Info" cancel button "Quit" with icon stop
187
		-- if more info is chosen, then open a help web page
188
		do shell script "open http://porting.openoffice.org/mac/faq/installing/X11.html"
189
		-- cannot continue, so quit the script
187
		return "error"
190
		return "error"
188
	end if
191
	end if
189
	
192
	
Lines 269-275 Link Here
269
		end if
272
		end if
270
		
273
		
271
		if (aKey is equal to "ERROR_NEED_X11") then
274
		if (aKey is equal to "ERROR_NEED_X11") then
272
			return "OpenOffice.org cannot be started, because X11 is not installed. Please install Apple X11 first."
275
			return "OpenOffice.org for Mac OS X cannot be started, because the X11 software is not installed. Please install Apple X11 first from the Mac OS X install DVD. More information: http://porting.openoffice.org/mac/faq/installing/X11.html"
273
		end if
276
		end if
274
	end try
277
	end try
275
end getMessage
278
end getMessage

Return to issue 61056