summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-12 13:57:34 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-12 13:57:34 +0100
commit4882ec6c95c249cd181e71714ffe1f2cb6b85608 (patch)
tree76b6e410d7030ddd6f4df917544dfb96290d1d27 /dbaccess
parent7851304cfbc7645e0a410ee08c4d7835c9a3a325 (diff)
Remove exclamation marks from OSL_FAIL statements
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/querydesign/QueryDesignView.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/dbaccess/source/ui/querydesign/QueryDesignView.cxx b/dbaccess/source/ui/querydesign/QueryDesignView.cxx
index ccfda77a5b0e..66a7b76102b2 100644
--- a/dbaccess/source/ui/querydesign/QueryDesignView.cxx
+++ b/dbaccess/source/ui/querydesign/QueryDesignView.cxx
@@ -333,7 +333,7 @@ namespace
}
catch(SQLException&)
{
- OSL_FAIL(!"Failure while building Join criteria!");
+ OSL_FAIL("Failure while building Join criteria!");
}
}
@@ -703,7 +703,7 @@ namespace
}
catch(SQLException&)
{
- OSL_FAIL(!"Failure while building select list!");
+ OSL_FAIL("Failure while building select list!");
}
return aFieldListStr.makeStringAndClear();
}
@@ -878,7 +878,7 @@ namespace
}
catch(SQLException&)
{
- OSL_FAIL(!"Failure while building where clause!");
+ OSL_FAIL("Failure while building where clause!");
}
return sal_True;
}
@@ -979,7 +979,7 @@ namespace
}
catch(SQLException&)
{
- OSL_FAIL(!"Failure while building group by!");
+ OSL_FAIL("Failure while building group by!");
}
return eErrorCode;
@@ -1214,7 +1214,7 @@ namespace
}
catch(SQLException&)
{
- OSL_FAIL(!"Failure while building group by!");
+ OSL_FAIL("Failure while building group by!");
}
return aGroupByStr;
}