summaryrefslogtreecommitdiff
path: root/svtools/source/java
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@suse.cz>2010-10-29 12:13:09 +0200
committerJan Holesovsky <kendy@suse.cz>2010-10-29 12:14:49 +0200
commit5785e4f4ab9c0e30d709e6150bc7230098ed550b (patch)
tree12cf22db78ee137983534d640808404c272cdc81 /svtools/source/java
parente321ace4d878331cdb862f47c31741cb44c74da3 (diff)
Show Java error just once by default.
Improves n#628806, where the user is presented with an amount of the same dialogs.
Diffstat (limited to 'svtools/source/java')
-rw-r--r--svtools/source/java/javacontext.cxx8
-rw-r--r--svtools/source/java/javainteractionhandler.cxx12
2 files changed, 0 insertions, 20 deletions
diff --git a/svtools/source/java/javacontext.cxx b/svtools/source/java/javacontext.cxx
index e0ab5d67f6c4..56b72ef1453c 100644
--- a/svtools/source/java/javacontext.cxx
+++ b/svtools/source/java/javacontext.cxx
@@ -39,14 +39,6 @@ using namespace com::sun::star::task;
namespace svt
{
-JavaContext::JavaContext( const Reference< XCurrentContext > & ctx )
- :
- m_aRefCount(0),
- m_xNextContext( ctx ),
- m_bShowErrorsOnce(false)
-{
-}
-
JavaContext::JavaContext( const Reference< XCurrentContext > & ctx,
bool bShowErrorsOnce)
: m_aRefCount(0),
diff --git a/svtools/source/java/javainteractionhandler.cxx b/svtools/source/java/javainteractionhandler.cxx
index 887ae9b2c9f5..6c76d463216e 100644
--- a/svtools/source/java/javainteractionhandler.cxx
+++ b/svtools/source/java/javainteractionhandler.cxx
@@ -58,18 +58,6 @@ using namespace com::sun::star::task;
namespace svt
{
-JavaInteractionHandler::JavaInteractionHandler():
- m_aRefCount(0),
- m_bShowErrorsOnce(false),
- m_bJavaDisabled_Handled(false),
- m_bInvalidSettings_Handled(false),
- m_bJavaNotFound_Handled(false),
- m_bVMCreationFailure_Handled(false),
- m_bRestartRequired_Handled(false),
- m_nResult_JavaDisabled(RET_NO)
-{
-}
-
JavaInteractionHandler::JavaInteractionHandler(bool bReportErrorOnce) :
m_aRefCount(0),
m_bShowErrorsOnce(bReportErrorOnce),