Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod2001-09-10 22:01:18 +0000
committerCarolyn MacLeod2001-09-10 22:01:18 +0000
commitcd3e8f7df1e6cd1691b70e13e74ed19019248b69 (patch)
tree341342af07c43b07833c4cb640ee1fe3281ff819
parent8bdc58c5aa8d1a59c31baf0cd58add90c4a107c2 (diff)
downloadeclipse.platform.swt-cd3e8f7df1e6cd1691b70e13e74ed19019248b69.tar.gz
eclipse.platform.swt-cd3e8f7df1e6cd1691b70e13e74ed19019248b69.tar.xz
eclipse.platform.swt-cd3e8f7df1e6cd1691b70e13e74ed19019248b69.zip
*** empty log message ***
-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 1b59f09bc8..92ba747e51 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
@@ -42,7 +42,7 @@ public final class Printer extends Device {
* @return the list of available printers
*/
public static PrinterData[] getPrinterList() {
- return new PrinterData[0]; // printing on X is currently unimplemented
+ if (true) return new PrinterData[0]; // printing on X is currently unimplemented
/* Connect to the default X print server */
//byte [] buffer = Converter.wcsToMbcs(null, XDefaultPrintServer, true);

Back to the top