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
64825d26
Kaydet (Commit)
64825d26
authored
Nis 02, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
svtools/treelistentry.hxx: sal_Bool->bool
Change-Id: I0fb2827c41024216f574266e61a11b1cbb7bce28
üst
05233048
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
20 deletions
+20
-20
treelistentry.hxx
include/svtools/treelistentry.hxx
+5
-5
content.cxx
sc/source/ui/navipi/content.cxx
+1
-1
sdtreelb.cxx
sd/source/ui/dlg/sdtreelb.cxx
+12
-12
content.cxx
sw/source/core/uibase/utlui/content.cxx
+2
-2
No files found.
include/svtools/treelistentry.hxx
Dosyayı görüntüle @
64825d26
...
...
@@ -53,9 +53,9 @@ class SVT_DLLPUBLIC SvTreeListEntry
sal_uLong
nAbsPos
;
sal_uLong
nListPos
;
ItemsType
maItems
;
sal_Bool
bIsMarked
;
void
*
pUserData
;
sal_uInt16
nEntryFlags
;
bool
bIsMarked
;
void
*
pUserData
;
sal_uInt16
nEntryFlags
;
private
:
void
ClearChildren
();
...
...
@@ -99,8 +99,8 @@ public:
sal_uInt16
GetFlags
()
const
;
void
SetFlags
(
sal_uInt16
nFlags
);
sal_B
ool
GetIsMarked
()
const
{
return
bIsMarked
;
}
void
SetMarked
(
sal_B
ool
IsMarked
)
{
bIsMarked
=
IsMarked
;
}
b
ool
GetIsMarked
()
const
{
return
bIsMarked
;
}
void
SetMarked
(
b
ool
IsMarked
)
{
bIsMarked
=
IsMarked
;
}
};
#endif
...
...
sc/source/ui/navipi/content.cxx
Dosyayı görüntüle @
64825d26
...
...
@@ -967,7 +967,7 @@ void ScContentTree::GetDrawNames( sal_uInt16 nType )
{
SvTreeListEntry
*
pChild
=
InsertEntry
(
aName
,
pParent
);
if
(
pChild
)
pChild
->
SetMarked
(
sal_F
alse
);
pChild
->
SetMarked
(
f
alse
);
Window
*
pWindow
=
NULL
;
ScTabViewShell
*
pScTabViewShell
=
NULL
;
ScDrawView
*
pScDrawView
=
NULL
;
...
...
sd/source/ui/dlg/sdtreelb.cxx
Dosyayı görüntüle @
64825d26
...
...
@@ -357,7 +357,7 @@ void SdPageObjsTLB::MarkCurEntry( const OUString& rName )
if
(
aTmp1
!=
aTmp2
)
{
// IA2 CWS. MT: Removed in SvTreeListEntry for now - only used in Sw/Sd/ScContentLBoxString, they should decide if they need this
pEntry
->
SetMarked
(
sal_F
alse
);
pEntry
->
SetMarked
(
f
alse
);
}
}
}
...
...
@@ -368,11 +368,11 @@ void SdPageObjsTLB::MarkCurEntry( const OUString& rName )
aTmp2
=
GetEntryText
(
pEntry
);
if
(
aTmp2
==
rName
)
{
pEntry
->
SetMarked
(
sal_T
rue
);
pEntry
->
SetMarked
(
t
rue
);
}
else
{
pEntry
->
SetMarked
(
sal_F
alse
);
pEntry
->
SetMarked
(
f
alse
);
}
}
}
...
...
@@ -385,7 +385,7 @@ void SdPageObjsTLB:: FreshCurEntry()
SvTreeListEntry
*
pEntry
=
NULL
;
for
(
pEntry
=
First
();
pEntry
;
pEntry
=
Next
(
pEntry
)
)
{
pEntry
->
SetMarked
(
sal_F
alse
);
pEntry
->
SetMarked
(
f
alse
);
}
Invalidate
();
}
...
...
@@ -651,9 +651,9 @@ void SdPageObjsTLB::AddShapeList (
if
(
pEntry
)
{
if
(
bMarked
)
pEntry
->
SetMarked
(
sal_T
rue
);
pEntry
->
SetMarked
(
t
rue
);
else
pEntry
->
SetMarked
(
sal_False
);
pEntry
->
SetMarked
(
false
);
}
}
while
(
aIter
.
IsMore
()
)
...
...
@@ -694,9 +694,9 @@ void SdPageObjsTLB::AddShapeList (
if
(
pNewEntry
)
{
if
(
bMarked
)
pNewEntry
->
SetMarked
(
sal_T
rue
);
pNewEntry
->
SetMarked
(
t
rue
);
else
pNewEntry
->
SetMarked
(
sal_False
);
pNewEntry
->
SetMarked
(
false
);
}
}
}
...
...
@@ -729,11 +729,11 @@ void SdPageObjsTLB::AddShapeList (
{
if
(
bMarked
)
{
pNewEntry
->
SetMarked
(
sal_T
rue
);
pNewEntry
->
SetMarked
(
t
rue
);
}
else
{
pNewEntry
->
SetMarked
(
sal_False
);
pNewEntry
->
SetMarked
(
false
);
}
}
}
...
...
@@ -778,11 +778,11 @@ void SdPageObjsTLB::AddShapeList (
{
if
(
bMarked
)
{
pNewEntry
->
SetMarked
(
sal_T
rue
);
pNewEntry
->
SetMarked
(
t
rue
);
}
else
{
pNewEntry
->
SetMarked
(
sal_False
);
pNewEntry
->
SetMarked
(
false
);
}
}
}
...
...
sw/source/core/uibase/utlui/content.cxx
Dosyayı görüntüle @
64825d26
...
...
@@ -1376,7 +1376,7 @@ void SwContentTree::RequestingChildren( SvTreeListEntry* pParent )
//else the corresponding entry is set false .
SdrObject
*
pObj
=
GetDrawingObjectsByContent
(
pCnt
);
if
(
pChild
)
pChild
->
SetMarked
(
sal_F
alse
);
pChild
->
SetMarked
(
f
alse
);
if
(
pObj
)
{
SdrView
*
pDrawView
=
pActiveShell
->
GetDrawView
();
...
...
@@ -1387,7 +1387,7 @@ void SwContentTree::RequestingChildren( SvTreeListEntry* pParent )
if
(
Marked
)
{
//sEntry += String::CreateFromAscii(" *");
pChild
->
SetMarked
(
sal_T
rue
);
pChild
->
SetMarked
(
t
rue
);
}
}
...
...
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