summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/text
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/text')
-rw-r--r--wizards/com/sun/star/wizards/text/TextDocument.java6
-rw-r--r--wizards/com/sun/star/wizards/text/TextFieldHandler.java12
-rw-r--r--wizards/com/sun/star/wizards/text/TextSectionHandler.java18
-rw-r--r--wizards/com/sun/star/wizards/text/TextStyleHandler.java6
-rw-r--r--wizards/com/sun/star/wizards/text/TextTableHandler.java20
-rw-r--r--wizards/com/sun/star/wizards/text/ViewHandler.java2
6 files changed, 32 insertions, 32 deletions
diff --git a/wizards/com/sun/star/wizards/text/TextDocument.java b/wizards/com/sun/star/wizards/text/TextDocument.java
index 0fe10c4213be..06a885c50072 100644
--- a/wizards/com/sun/star/wizards/text/TextDocument.java
+++ b/wizards/com/sun/star/wizards/text/TextDocument.java
@@ -259,7 +259,7 @@ public class TextDocument
}
catch (PropertyVetoException e1)
{
- e1.printStackTrace(System.out);
+ e1.printStackTrace(System.err);
}
}
Object oDoc = OfficeDocument.load(xFrame, sDefaultTemplate, "_self", loadValues);
@@ -299,7 +299,7 @@ public class TextDocument
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
return null;
}
}
@@ -445,7 +445,7 @@ public class TextDocument
}
catch (NoSuchElementException e)
{
- e.printStackTrace(System.out);
+ e.printStackTrace(System.err);
return false;
}
}
diff --git a/wizards/com/sun/star/wizards/text/TextFieldHandler.java b/wizards/com/sun/star/wizards/text/TextFieldHandler.java
index 32b5255b9366..db25b3f147b8 100644
--- a/wizards/com/sun/star/wizards/text/TextFieldHandler.java
+++ b/wizards/com/sun/star/wizards/text/TextFieldHandler.java
@@ -84,7 +84,7 @@ public class TextFieldHandler
}
catch (com.sun.star.uno.Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
return PropertyNames.EMPTY_STRING;
}
@@ -121,7 +121,7 @@ public class TextFieldHandler
}
catch (com.sun.star.uno.Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
@@ -192,7 +192,7 @@ public class TextFieldHandler
catch (Exception e)
{
// TODO Auto-generated catch block
- e.printStackTrace(System.out);
+ e.printStackTrace(System.err);
}
return null;
}
@@ -213,7 +213,7 @@ public class TextFieldHandler
}
catch (Exception e)
{
- e.printStackTrace(System.out);
+ e.printStackTrace(System.err);
}
}
@@ -313,7 +313,7 @@ public class TextFieldHandler
}
catch (Exception e)
{
- e.printStackTrace(System.out);
+ e.printStackTrace(System.err);
}
}
@@ -333,7 +333,7 @@ public class TextFieldHandler
}
catch (Exception e)
{
- e.printStackTrace(System.out);
+ e.printStackTrace(System.err);
}
}
}
diff --git a/wizards/com/sun/star/wizards/text/TextSectionHandler.java b/wizards/com/sun/star/wizards/text/TextSectionHandler.java
index 7c80d722adce..931a0f30dd17 100644
--- a/wizards/com/sun/star/wizards/text/TextSectionHandler.java
+++ b/wizards/com/sun/star/wizards/text/TextSectionHandler.java
@@ -66,7 +66,7 @@ public class TextSectionHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
@@ -86,7 +86,7 @@ public class TextSectionHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
@@ -99,7 +99,7 @@ public class TextSectionHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
@@ -122,7 +122,7 @@ public class TextSectionHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
@@ -141,7 +141,7 @@ public class TextSectionHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
@@ -168,7 +168,7 @@ public class TextSectionHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
@@ -194,7 +194,7 @@ public class TextSectionHandler
}
catch (Exception e)
{
- e.printStackTrace(System.out);
+ e.printStackTrace(System.err);
}
}
@@ -234,7 +234,7 @@ public class TextSectionHandler
}
catch (IllegalArgumentException e)
{
- e.printStackTrace(System.out);
+ e.printStackTrace(System.err);
}
}
@@ -257,7 +257,7 @@ public class TextSectionHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
}
diff --git a/wizards/com/sun/star/wizards/text/TextStyleHandler.java b/wizards/com/sun/star/wizards/text/TextStyleHandler.java
index 70cbca47f91f..b1ebdc5407ea 100644
--- a/wizards/com/sun/star/wizards/text/TextStyleHandler.java
+++ b/wizards/com/sun/star/wizards/text/TextStyleHandler.java
@@ -61,7 +61,7 @@ public class TextStyleHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
@@ -80,7 +80,7 @@ public class TextStyleHandler
}
catch (Exception e)
{
- e.printStackTrace(System.out);
+ e.printStackTrace(System.err);
}
return null;
}
@@ -99,7 +99,7 @@ public class TextStyleHandler
}
catch (Exception e)
{
- e.printStackTrace(System.out);
+ e.printStackTrace(System.err);
return null;
}
}
diff --git a/wizards/com/sun/star/wizards/text/TextTableHandler.java b/wizards/com/sun/star/wizards/text/TextTableHandler.java
index 42dde2f4b36f..c992946f163b 100644
--- a/wizards/com/sun/star/wizards/text/TextTableHandler.java
+++ b/wizards/com/sun/star/wizards/text/TextTableHandler.java
@@ -68,7 +68,7 @@ public class TextTableHandler
}
catch (java.lang.Exception e)
{
- e.printStackTrace(System.out);
+ e.printStackTrace(System.err);
}
}
@@ -91,7 +91,7 @@ public class TextTableHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
return xTextTable;
}
@@ -107,7 +107,7 @@ public class TextTableHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
return null;
}
}
@@ -127,7 +127,7 @@ public class TextTableHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
@@ -144,7 +144,7 @@ public class TextTableHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
@@ -158,7 +158,7 @@ public class TextTableHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
@@ -171,7 +171,7 @@ public class TextTableHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
@@ -187,7 +187,7 @@ public class TextTableHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
@@ -205,7 +205,7 @@ public class TextTableHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
@@ -237,7 +237,7 @@ public class TextTableHandler
}
catch (Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}
}
diff --git a/wizards/com/sun/star/wizards/text/ViewHandler.java b/wizards/com/sun/star/wizards/text/ViewHandler.java
index 6324fdbec492..44f67a90a740 100644
--- a/wizards/com/sun/star/wizards/text/ViewHandler.java
+++ b/wizards/com/sun/star/wizards/text/ViewHandler.java
@@ -89,7 +89,7 @@ public class ViewHandler
}
catch (com.sun.star.uno.Exception exception)
{
- exception.printStackTrace(System.out);
+ exception.printStackTrace(System.err);
}
}