summaryrefslogtreecommitdiff
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
commitedbcc9ac3c2fdf8e0f5715857cf7f52e9b66d51f (patch)
tree2bdf518285b7ecd7bf2919b79746a57704cb7917
parent2cb6918d07e5c431689e028f39430fc5e84c6d56 (diff)
Remove exclamation marks from OSL_FAIL statements
-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 35ee109b1..bcc132be6 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;
}