Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2004-05-17 18:28:28 +0000
committerSilenio Quarti2004-05-17 18:28:28 +0000
commit23a612fbbfb7f73f6d3140e05bfb655fcefc2862 (patch)
tree5428d01e3f660218900d8f69d275dce1f9f79b67 /bundles/org.eclipse.swt/Eclipse SWT Printing/motif/org/eclipse
parent06c8d0140cdc3176c199291454a98528f9d127b7 (diff)
downloadeclipse.platform.swt-23a612fbbfb7f73f6d3140e05bfb655fcefc2862.tar.gz
eclipse.platform.swt-23a612fbbfb7f73f6d3140e05bfb655fcefc2862.tar.xz
eclipse.platform.swt-23a612fbbfb7f73f6d3140e05bfb655fcefc2862.zip
*** empty log message ***
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Printing/motif/org/eclipse')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Printing/motif/org/eclipse/swt/printing/Printer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Printing/motif/org/eclipse/swt/printing/Printer.java b/bundles/org.eclipse.swt/Eclipse SWT Printing/motif/org/eclipse/swt/printing/Printer.java
index 7b636d7474..68f7971c64 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Printing/motif/org/eclipse/swt/printing/Printer.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Printing/motif/org/eclipse/swt/printing/Printer.java
@@ -328,7 +328,7 @@ protected void init() {
OS.XpGetPageDimensions(xDisplay, printContext, width, height, rect);
xDrawable = OS.XCreateWindow(xDisplay, OS.XRootWindowOfScreen(xScreen),
0, 0, rect.width, rect.height, 0,
- OS.CopyFromParent, OS.CopyFromParent, OS.CopyFromParent, 0, 0);
+ OS.CopyFromParent, OS.CopyFromParent, OS.CopyFromParent, 0, null);
if (xDrawable == 0) SWT.error(SWT.ERROR_NO_HANDLES);
/* Initialize the default font */

Back to the top