summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorjp <jp@openoffice.org>2000-11-06 08:04:23 +0000
committerjp <jp@openoffice.org>2000-11-06 08:04:23 +0000
commit8c15e5398f5a3e59cb41c462f5b8d9e11aaf6268 (patch)
treed5969557eb5f4ffab1eae88fcccf1aab4cef2e53 /sw
parent931d081e9c83faeccb1ed948e32da849e1b84a35 (diff)
must changes: GlossaryPath -> AutoTextPath
Diffstat (limited to 'sw')
-rw-r--r--sw/source/ui/misc/glosdoc.cxx10
-rw-r--r--sw/source/ui/misc/glossary.cxx10
-rw-r--r--sw/source/ui/utlui/gloslst.cxx13
3 files changed, 20 insertions, 13 deletions
diff --git a/sw/source/ui/misc/glosdoc.cxx b/sw/source/ui/misc/glosdoc.cxx
index 375641f49905..4736af579939 100644
--- a/sw/source/ui/misc/glosdoc.cxx
+++ b/sw/source/ui/misc/glosdoc.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: glosdoc.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: kso $ $Date: 2000-10-31 10:13:27 $
+ * last change: $Author: jp $ $Date: 2000-11-06 09:04:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -813,7 +813,7 @@ sal_Bool lcl_FindSameEntry(const SvStrings& rDirArr, const String& rEntryURL)
void SwGlossaries::UpdateGlosPath(sal_Bool bFull)
{
SvtPathOptions aPathOpt;
- String aNewPath( aPathOpt.GetGlossaryPath() );
+ String aNewPath( aPathOpt.GetAutoTextPath() );
sal_Bool bPathChanged = aPath != aNewPath;
if (bFull || bPathChanged)
{
@@ -911,6 +911,10 @@ String SwGlossaries::GetExtension()
/*------------------------------------------------------------------------
$Log: not supported by cvs2svn $
+ Revision 1.4 2000/10/31 10:13:27 kso
+ Fixed: Typo in XContentAccess::queryContentIdentifierString() - the
+ second 'i' was missing ( SUPD>611 ).
+
Revision 1.3 2000/10/20 14:18:05 os
use comphelper methods
diff --git a/sw/source/ui/misc/glossary.cxx b/sw/source/ui/misc/glossary.cxx
index 409fa6767c80..91a40b626079 100644
--- a/sw/source/ui/misc/glossary.cxx
+++ b/sw/source/ui/misc/glossary.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: glossary.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: os $ $Date: 2000-10-20 14:18:05 $
+ * last change: $Author: jp $ $Date: 2000-11-06 09:04:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -778,7 +778,7 @@ IMPL_LINK( SwGlossaryDlg, BibHdl, Button *, EMPTYARG )
{
//check if at least one glossary path is write enabled
SvtPathOptions aPathOpt;
- String sGlosPath( aPathOpt.GetGlossaryPath() );
+ String sGlosPath( aPathOpt.GetAutoTextPath() );
USHORT nPaths = sGlosPath.GetTokenCount(';');
BOOL bIsWritable = FALSE;
for(USHORT nPath = 0; nPath < nPaths; nPath++)
@@ -1255,14 +1255,14 @@ IMPL_LINK( SwGlossaryDlg, PathHdl, Button *, pBtn )
{
SvxMultiPathDialog* pDlg = new SvxMultiPathDialog(pBtn);
SvtPathOptions aPathOpt;
- String sGlosPath( aPathOpt.GetGlossaryPath() );
+ String sGlosPath( aPathOpt.GetAutoTextPath() );
pDlg->SetPath(sGlosPath);
if(RET_OK == pDlg->Execute())
{
String sTmp(pDlg->GetPath());
if(sTmp != sGlosPath)
{
- aPathOpt.SetGlossaryPath( sTmp );
+ aPathOpt.SetAutoTextPath( sTmp );
::GetGlossaries()->UpdateGlosPath( sal_True );
Init();
}
diff --git a/sw/source/ui/utlui/gloslst.cxx b/sw/source/ui/utlui/gloslst.cxx
index c5dcf46fbff1..96d211ec5fef 100644
--- a/sw/source/ui/utlui/gloslst.cxx
+++ b/sw/source/ui/utlui/gloslst.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: gloslst.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: jp $ $Date: 2000-10-06 13:39:19 $
+ * last change: $Author: jp $ $Date: 2000-11-06 09:04:23 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -234,7 +234,7 @@ SwGlossaryList::SwGlossaryList() :
bFilled(FALSE)
{
SvtPathOptions aPathOpt;
- sPath = aPathOpt.GetGlossaryPath();
+ sPath = aPathOpt.GetAutoTextPath();
SetTimeout(GLOS_TIMEOUT);
}
@@ -396,7 +396,7 @@ void SwGlossaryList::Update()
Start();
SvtPathOptions aPathOpt;
- String sTemp( aPathOpt.GetGlossaryPath() );
+ String sTemp( aPathOpt.GetAutoTextPath() );
if(sTemp != sPath)
{
sPath = sTemp;
@@ -631,11 +631,14 @@ void SwGlossaryList::ClearGroups()
Source Code Control System - Header
- $Header: /zpool/svn/migration/cvs_rep_09_09_08/code/sw/source/ui/utlui/gloslst.cxx,v 1.3 2000-10-06 13:39:19 jp Exp $
+ $Header: /zpool/svn/migration/cvs_rep_09_09_08/code/sw/source/ui/utlui/gloslst.cxx,v 1.4 2000-11-06 09:04:23 jp Exp $
Source Code Control System - Update
$Log: not supported by cvs2svn $
+ Revision 1.3 2000/10/06 13:39:19 jp
+ should changes: don't use IniManager
+
Revision 1.2 2000/09/27 12:27:59 jp
use the new FileStatHelper class