Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
c64b5e18
Kaydet (Commit)
c64b5e18
authored
Haz 11, 2001
tarafından
Mathias Bauer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#87722#: no SfxConfigItems
üst
621d4b3f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
12 deletions
+16
-12
fmsrccfg.cxx
svx/source/form/fmsrccfg.cxx
+11
-7
fmsrccfg.hxx
svx/source/inc/fmsrccfg.hxx
+5
-5
No files found.
svx/source/form/fmsrccfg.cxx
Dosyayı görüntüle @
c64b5e18
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: fmsrccfg.cxx,v $
*
* $Revision: 1.
2
$
* $Revision: 1.
3
$
*
* last change: $Author:
fs $ $Date: 2001-04-18 07:44:08
$
* last change: $Author:
mba $ $Date: 2001-06-11 08:59:26
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -131,8 +131,9 @@ BOOL FmSearchParams::operator ==(const FmSearchParams& rComp) const
#define FM_SEARCH_CONFIG_VERSION_SO60 4 // ab der SRC629
//------------------------------------------------------------------------
FmSearchConfigItem
::
FmSearchConfigItem
()
:
SfxConfigItem
(
SFX_ITEMTYPE_SVXSEARCHPARAMS
)
FmSearchConfigItem
::
FmSearchConfigItem
()
{
UseDefault
();
}
//------------------------------------------------------------------------
...
...
@@ -169,6 +170,7 @@ INT32 FmSearchConfigItem::CalcCheckSum(const FmSearchParams& aParams, short nFor
return
nReturn
;
}
/*
//------------------------------------------------------------------------
int FmSearchConfigItem::Load(SvStream& rStore)
{
...
...
@@ -316,6 +318,7 @@ BOOL FmSearchConfigItem::Store(SvStream& rStore)
return TRUE;
}
*/
//------------------------------------------------------------------------
void
FmSearchConfigItem
::
UseDefault
()
...
...
@@ -344,7 +347,7 @@ void FmSearchConfigItem::UseDefault()
|
TransliterationModules_ignoreSeparator_ja_JP
|
TransliterationModules_IGNORE_CASE
;
SetDefault
(
TRUE
);
//
SetDefault(TRUE);
}
// ===================================================================================================
...
...
@@ -381,7 +384,7 @@ FmSearchConfigAdmin::~FmSearchConfigAdmin()
{
if
(
s_pItem
)
{
s_pItem
->
StoreConfig
(
TRUE
);
//
s_pItem->StoreConfig(TRUE);
delete
s_pItem
;
s_pItem
=
NULL
;
}
...
...
@@ -397,7 +400,8 @@ FmSearchConfigItem* FmSearchConfigAdmin::GetItem() const
return
s_pItem
;
s_pItem
=
new
FmSearchConfigItem
;
s_pItem
->
Initialize
();
// s_pItem->Initialize();
s_pItem
->
UseDefault
();
return
s_pItem
;
}
...
...
@@ -407,7 +411,7 @@ void FmSearchConfigAdmin::PutParams(const FmSearchParams& rParams)
if
(
GetParams
()
!=
rParams
)
{
GetItem
()
->
m_aParams
=
rParams
;
GetItem
()
->
SetDefault
(
FALSE
);
// damit wird das Ding implizit auch modified gesetzt
//
GetItem()->SetDefault(FALSE); // damit wird das Ding implizit auch modified gesetzt
}
}
svx/source/inc/fmsrccfg.hxx
Dosyayı görüntüle @
c64b5e18
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: fmsrccfg.hxx,v $
*
* $Revision: 1.
2
$
* $Revision: 1.
3
$
*
* last change: $Author:
fs $ $Date: 2001-04-18 07:43:06
$
* last change: $Author:
mba $ $Date: 2001-06-11 08:59:27
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -124,7 +124,7 @@ public:
// = class FmSearchConfigItem - ein ConfigItem, dass sich Suchparameter merkt
// ===================================================================================================
class
FmSearchConfigItem
:
public
SfxConfigItem
class
FmSearchConfigItem
{
friend
class
FmSearchConfigAdmin
;
...
...
@@ -135,8 +135,8 @@ private:
FmSearchConfigItem
();
public
:
virtual
int
Load
(
SvStream
&
);
virtual
BOOL
Store
(
SvStream
&
);
//
virtual int Load(SvStream&);
//
virtual BOOL Store(SvStream&);
virtual
void
UseDefault
();
protected
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment