diff options
Diffstat (limited to 'connectivity/source/drivers')
-rw-r--r-- | connectivity/source/drivers/evoab2/NConnection.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/evoab2/NConnection.cxx b/connectivity/source/drivers/evoab2/NConnection.cxx index b4424a6c3669..2f3309ec9378 100644 --- a/connectivity/source/drivers/evoab2/NConnection.cxx +++ b/connectivity/source/drivers/evoab2/NConnection.cxx @@ -44,17 +44,17 @@ OUString implGetExceptionMsg( Exception& e, const OUString& aExceptionType_ ) { OUString aExceptionType = aExceptionType_; if( aExceptionType.isEmpty() ) - aExceptionType = OUString("Unknown") ; + aExceptionType = "Unknown"; OUString aTypeLine( "\nType: " ); aTypeLine += aExceptionType; OUString aMessageLine( "\nMessage: " ); - aMessageLine += OUString( e.Message ); + aMessageLine += e.Message; OUString aMsg(aTypeLine); aMsg += aMessageLine; - return aMsg; + return aMsg; } // Exception type unknown |