summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/runner/convwatch/DBHelper.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qadevOOo/runner/convwatch/DBHelper.java b/qadevOOo/runner/convwatch/DBHelper.java
index 26be888f02fd..aaf6497bcd75 100644
--- a/qadevOOo/runner/convwatch/DBHelper.java
+++ b/qadevOOo/runner/convwatch/DBHelper.java
@@ -187,8 +187,8 @@ public class DBHelper
public String Quote(String _sToQuote)
{
- String ts = "'";
- String ds = "\"";
+ char ts = '\'';
+ char ds = '"';
int nQuote = _sToQuote.indexOf(ts);
if (nQuote >= 0)
{