diff options
author | Eike Rathke <er@openoffice.org> | 2001-07-11 15:02:59 +0000 |
---|---|---|
committer | Eike Rathke <er@openoffice.org> | 2001-07-11 15:02:59 +0000 |
commit | ed77a24c36a97769b49492f9b19c6f231d77298d (patch) | |
tree | a11263e67d2c4b5ae16d0659a15d7ffc866d9861 /sc/source/ui/dbgui/scendlg.cxx | |
parent | 319ebbe0f7b832ec8660a08b0a16ab2cdc65adef (diff) |
#88188# performance: transliteration compare instead of collator compare; SvtSysLocaleData accesses
Diffstat (limited to 'sc/source/ui/dbgui/scendlg.cxx')
-rw-r--r-- | sc/source/ui/dbgui/scendlg.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/ui/dbgui/scendlg.cxx b/sc/source/ui/dbgui/scendlg.cxx index e8167d9a3dc7..5e5b1de769ee 100644 --- a/sc/source/ui/dbgui/scendlg.cxx +++ b/sc/source/ui/dbgui/scendlg.cxx @@ -2,9 +2,9 @@ * * $RCSfile: scendlg.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: er $ $Date: 2001-07-02 10:11:49 $ + * last change: $Author: er $ $Date: 2001-07-11 15:57:14 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -72,8 +72,8 @@ #include <svtools/useroptions.hxx> #include <vcl/msgbox.hxx> -#ifndef INCLUDED_SVTOOLS_SYSLOCALE_HXX -#include <svtools/syslocale.hxx> +#ifndef _UNOTOOLS_LOCALEDATAWRAPPER_HXX +#include <unotools/localedatawrapper.hxx> #endif #include "global.hxx" @@ -143,9 +143,9 @@ ScNewScenarioDlg::ScNewScenarioDlg( Window* pParent, const String& rName, BOOL b aComment.AppendAscii(RTL_CONSTASCII_STRINGPARAM( ", " )); aComment += String( ScResId( STR_ON ) ); aComment += ' '; - aComment += ScGlobal::pSysLocale->GetLocaleData().getDate( Date() ); + aComment += ScGlobal::pLocaleData->getDate( Date() ); aComment.AppendAscii(RTL_CONSTASCII_STRINGPARAM( ", " )); - aComment += ScGlobal::pSysLocale->GetLocaleData().getTime( Time() ); + aComment += ScGlobal::pLocaleData->getTime( Time() ); aEdComment .SetText( aComment ); aEdName .SetText( rName ); |