Kaydet (Commit) 51908951 authored tarafından Caolán McNamara's avatar Caolán McNamara

add patch

Change-Id: I4cc4f3dda5bcf30704bc6a448c85546d3af46c46
üst a45f6814
--- misc/build/JLanguageTool-1.7.0/src/java/org/languagetool/openoffice/OOoAboutDialog.java 2013-07-11 13:33:26.681387525 +0100
+++ misc/build/JLanguageTool-1.7.0/src/java/org/languagetool/openoffice/OOoAboutDialog.java 2013-07-11 13:34:46.666424549 +0100
@@ -19,6 +19,7 @@
package org.languagetool.openoffice;
import com.sun.star.awt.Rectangle;
+import com.sun.star.awt.MessageBoxType;
import com.sun.star.awt.XMessageBox;
import com.sun.star.awt.XMessageBoxFactory;
import com.sun.star.awt.XWindowPeer;
@@ -49,16 +50,14 @@
.getString("guiMenuAbout"));
final XMessageBoxFactory messageBoxFactory = (XMessageBoxFactory) UnoRuntime
.queryInterface(XMessageBoxFactory.class, winPeer.getToolkit());
- final Rectangle messageBoxRectangle = new Rectangle();
final XMessageBox box = messageBoxFactory
.createMessageBox(
winPeer,
- messageBoxRectangle,
- "infobox",
+ MessageBoxType.INFOBOX,
0,
aboutDialogTitle,
getAboutText());
box.execute();
}
-}
\ No newline at end of file
+}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment