summaryrefslogtreecommitdiff
path: root/svtools/source/java
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-06-25 23:10:14 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-06-26 13:34:03 +0100
commitd9a00ace2ce3423c1ac08eee0bd1fd36dace8d3e (patch)
tree2a3900905792268c39f0c9596a5eb9ecdc8a3c61 /svtools/source/java
parent4f25eb2c4eb7b5ce265eefe25a5ab84a39daf574 (diff)
tidy some resource strings
Change-Id: I611a276d048121084ec842d062129e042f3baea5
Diffstat (limited to 'svtools/source/java')
-rw-r--r--svtools/source/java/javainteractionhandler.cxx15
1 files changed, 5 insertions, 10 deletions
diff --git a/svtools/source/java/javainteractionhandler.cxx b/svtools/source/java/javainteractionhandler.cxx
index 6b54a5dfe5b1..16146ba34e56 100644
--- a/svtools/source/java/javainteractionhandler.cxx
+++ b/svtools/source/java/javainteractionhandler.cxx
@@ -131,8 +131,7 @@ void SAL_CALL JavaInteractionHandler::handle( const Reference< XInteractionReque
SolarMutexGuard aSolarGuard;
m_bJavaNotFound_Handled = true;
WarningBox aWarningBox( NULL, SvtResId( WARNINGBOX_JAVANOTFOUND ) );
- String aTitle( SvtResId( STR_WARNING_JAVANOTFOUND ) );
- aWarningBox.SetText( aTitle );
+ aWarningBox.SetText(SvtResId(STR_WARNING_JAVANOTFOUND).toString());
nResult = aWarningBox.Execute();
}
else
@@ -152,8 +151,7 @@ void SAL_CALL JavaInteractionHandler::handle( const Reference< XInteractionReque
#else
WarningBox aWarningBox( NULL, SvtResId( WARNINGBOX_INVALIDJAVASETTINGS ) );
#endif
- String aTitle( SvtResId(STR_WARNING_INVALIDJAVASETTINGS));
- aWarningBox.SetText( aTitle );
+ aWarningBox.SetText(SvtResId(STR_WARNING_INVALIDJAVASETTINGS).toString());
nResult = aWarningBox.Execute();
}
else
@@ -169,8 +167,7 @@ void SAL_CALL JavaInteractionHandler::handle( const Reference< XInteractionReque
m_bJavaDisabled_Handled = true;
// Java disabled. Give user a chance to enable Java inside Office.
QueryBox aQueryBox( NULL, SvtResId( QBX_JAVADISABLED ) );
- String aTitle( SvtResId( STR_QUESTION_JAVADISABLED ) );
- aQueryBox.SetText( aTitle );
+ aQueryBox.SetText(SvtResId( STR_QUESTION_JAVADISABLED ).toString());
nResult = aQueryBox.Execute();
if ( nResult == RET_YES )
{
@@ -197,8 +194,7 @@ void SAL_CALL JavaInteractionHandler::handle( const Reference< XInteractionReque
#else
ErrorBox aErrorBox( NULL, SvtResId( ERRORBOX_JVMCREATIONFAILED ) );
#endif
- String aTitle( SvtResId( STR_ERROR_JVMCREATIONFAILED ) );
- aErrorBox.SetText( aTitle );
+ aErrorBox.SetText(SvtResId( STR_ERROR_JVMCREATIONFAILED ).toString());
nResult = aErrorBox.Execute();
}
else
@@ -215,8 +211,7 @@ void SAL_CALL JavaInteractionHandler::handle( const Reference< XInteractionReque
SolarMutexGuard aSolarGuard;
m_bRestartRequired_Handled = true;
ErrorBox aErrorBox(NULL, SvtResId( ERRORBOX_RESTARTREQUIRED ) );
- String aTitle( SvtResId( STR_ERROR_RESTARTREQUIRED ) );
- aErrorBox.SetText( aTitle );
+ aErrorBox.SetText(SvtResId( STR_ERROR_RESTARTREQUIRED ).toString());
nResult = aErrorBox.Execute();
}
else