diff options
author | Peter Burow <pb@openoffice.org> | 2001-03-22 13:21:28 +0000 |
---|---|---|
committer | Peter Burow <pb@openoffice.org> | 2001-03-22 13:21:28 +0000 |
commit | 614e9d2d3f2cecaabc91d2461112ecd89991a589 (patch) | |
tree | 4e40ef14bcbb3673c325d09e54e13cdf41199e05 /svtools/source/config/helpopt.cxx | |
parent | 710e1bf0bf38efec224089cf93132e502353ed75 (diff) |
fix: #81086# wrong assert removed
Diffstat (limited to 'svtools/source/config/helpopt.cxx')
-rw-r--r-- | svtools/source/config/helpopt.cxx | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/svtools/source/config/helpopt.cxx b/svtools/source/config/helpopt.cxx index 5dd828586fd5..c4086cf01da7 100644 --- a/svtools/source/config/helpopt.cxx +++ b/svtools/source/config/helpopt.cxx @@ -2,9 +2,9 @@ * * $RCSfile: helpopt.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: pb $ $Date: 2000-12-19 12:07:49 $ + * last change: $Author: pb $ $Date: 2001-03-22 14:21:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -198,12 +198,6 @@ SvtHelpOptions_Impl::SvtHelpOptions_Impl() case HELPTIPS : bHelpTips = bTmp; break; -/*! case AUTOSTART : - bHelpAgentAutoStartMode = bTmp; - break; - case WELCOMESCREEN : - bWelcomeScreen = bTmp; - break;*/ default: DBG_ERRORFILE( "Wrong Member!" ); break; @@ -249,12 +243,12 @@ void SvtHelpOptions_Impl::Commit() case HELPTIPS : pValues[nProp] <<= bHelpTips; break; -/*! case AUTOSTART : - pValues[nProp] <<= bHelpAgentAutoStartMode; + + case LOCALE: + case SYSTEM: + // readonly property -> do nothing break; - case WELCOMESCREEN : - pValues[nProp] <<= bWelcomeScreen; - break;*/ + default: DBG_ERRORFILE( "invalid index to save a path" ); } |