summaryrefslogtreecommitdiff
path: root/desktop/source/app
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-05-13 12:12:21 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-05-13 12:12:21 +0000
commit69af77e3d8bfc05d749de045be685215f19d1ebe (patch)
treeda438a17f6392a56e902b648edef5b97cc9fe8b8 /desktop/source/app
parentc3c29886de7965e0d121751a2528a88a720073e6 (diff)
INTEGRATION: CWS fwk86 (1.34.46); FILE MERGED
2008/04/30 15:49:58 pb 1.34.46.3: RESYNC: (1.35-1.38); FILE MERGED 2008/03/12 17:26:47 pb 1.34.46.2: RESYNC: (1.34-1.35); FILE MERGED 2008/03/06 09:28:21 cd 1.34.46.1: #i86384# Remove unused code from desktop
Diffstat (limited to 'desktop/source/app')
-rw-r--r--desktop/source/app/cmdlineargs.cxx72
1 files changed, 1 insertions, 71 deletions
diff --git a/desktop/source/app/cmdlineargs.cxx b/desktop/source/app/cmdlineargs.cxx
index a6b8217ba810..40ab8fad161c 100644
--- a/desktop/source/app/cmdlineargs.cxx
+++ b/desktop/source/app/cmdlineargs.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: cmdlineargs.cxx,v $
- * $Revision: 1.38 $
+ * $Revision: 1.39 $
*
* This file is part of OpenOffice.org.
*
@@ -108,11 +108,6 @@ CommandLineArgs::Supplier::Exception::operator =(Exception const &)
CommandLineArgs::Supplier::~Supplier() {}
-CommandLineArgs::CommandLineArgs()
-{
- ResetParamValues();
-}
-
// intialize class with command line parameters from process environment
CommandLineArgs::CommandLineArgs( bool bConvert )
{
@@ -592,14 +587,6 @@ void CommandLineArgs::ResetParamValues()
m_eArgumentCount = NONE;
}
-sal_Bool CommandLineArgs::GetBoolParam( BoolParam eParam ) const
-{
- osl::MutexGuard aMutexGuard( m_aMutex );
-
- OSL_ASSERT( ( eParam >= 0 && eParam < CMD_BOOLPARAM_COUNT ) );
- return m_aBoolParams[eParam];
-}
-
void CommandLineArgs::SetBoolParam( BoolParam eParam, sal_Bool bNewValue )
{
osl::MutexGuard aMutexGuard( m_aMutex );
@@ -608,22 +595,6 @@ void CommandLineArgs::SetBoolParam( BoolParam eParam, sal_Bool bNewValue )
m_aBoolParams[eParam] = bNewValue;
}
-const rtl::OUString& CommandLineArgs::GetStringParam( StringParam eParam ) const
-{
- osl::MutexGuard aMutexGuard( m_aMutex );
-
- OSL_ASSERT( ( eParam >= 0 && eParam < CMD_STRINGPARAM_COUNT ) );
- return m_aStrParams[eParam];
-}
-
-void CommandLineArgs::SetStringParam( StringParam eParam, const rtl::OUString& aNewValue )
-{
- osl::MutexGuard aMutexGuard( m_aMutex );
-
- OSL_ASSERT( ( eParam >= 0 && eParam < CMD_STRINGPARAM_COUNT ) );
- m_aStrParams[eParam] = aNewValue;
-}
-
sal_Bool CommandLineArgs::IsMinimized() const
{
osl::MutexGuard aMutexGuard( m_aMutex );
@@ -654,12 +625,6 @@ sal_Bool CommandLineArgs::IsBean() const
return m_aBoolParams[ CMD_BOOLPARAM_BEAN ];
}
-sal_Bool CommandLineArgs::IsPlugin() const
-{
- osl::MutexGuard aMutexGuard( m_aMutex );
- return m_aBoolParams[ CMD_BOOLPARAM_PLUGIN ];
-}
-
sal_Bool CommandLineArgs::IsServer() const
{
osl::MutexGuard aMutexGuard( m_aMutex );
@@ -822,20 +787,6 @@ sal_Bool CommandLineArgs::GetUnAcceptString( ::rtl::OUString& rPara ) const
return m_aStrSetParams[ CMD_STRINGPARAM_UNACCEPT ];
}
-sal_Bool CommandLineArgs::GetUserDir( ::rtl::OUString& rPara) const
-{
- osl::MutexGuard aMutexGuard( m_aMutex );
- rPara = m_aStrParams[ CMD_STRINGPARAM_USERDIR ];
- return m_aStrSetParams[ CMD_STRINGPARAM_USERDIR ];
-}
-
-sal_Bool CommandLineArgs::GetClientDisplay( ::rtl::OUString& rPara) const
-{
- osl::MutexGuard aMutexGuard( m_aMutex );
- rPara = m_aStrParams[ CMD_STRINGPARAM_CLIENTDISPLAY ];
- return m_aStrSetParams[ CMD_STRINGPARAM_CLIENTDISPLAY ];
-}
-
sal_Bool CommandLineArgs::GetOpenList( ::rtl::OUString& rPara) const
{
osl::MutexGuard aMutexGuard( m_aMutex );
@@ -878,13 +829,6 @@ sal_Bool CommandLineArgs::GetPrintList( ::rtl::OUString& rPara) const
return m_aStrSetParams[ CMD_STRINGPARAM_PRINTLIST ];
}
-sal_Bool CommandLineArgs::GetVersionString( ::rtl::OUString& rPara) const
-{
- osl::MutexGuard aMutexGuard( m_aMutex );
- rPara = m_aStrParams[ CMD_STRINGPARAM_VERSION ];
- return m_aStrSetParams[ CMD_STRINGPARAM_VERSION ];
-}
-
sal_Bool CommandLineArgs::GetPrintToList( ::rtl::OUString& rPara ) const
{
osl::MutexGuard aMutexGuard( m_aMutex );
@@ -899,20 +843,6 @@ sal_Bool CommandLineArgs::GetPrinterName( ::rtl::OUString& rPara ) const
return m_aStrSetParams[ CMD_STRINGPARAM_PRINTERNAME ];
}
-sal_Bool CommandLineArgs::GetDisplay( ::rtl::OUString& rPara ) const
-{
- osl::MutexGuard aMutexGuard( m_aMutex );
- rPara = m_aStrParams[ CMD_STRINGPARAM_DISPLAY ];
- return m_aStrSetParams[ CMD_STRINGPARAM_DISPLAY ];
-}
-
-sal_Bool CommandLineArgs::IsPrinting() const
-{
- osl::MutexGuard aMutexGuard( m_aMutex );
- return( m_aStrParams[ CMD_STRINGPARAM_PRINTLIST ].getLength() > 0 ||
- m_aStrParams[ CMD_STRINGPARAM_PRINTTOLIST ].getLength() > 0 );
-}
-
sal_Bool CommandLineArgs::IsEmpty() const
{
osl::MutexGuard aMutexGuard( m_aMutex );