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
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
18 deletions
+18
-18
treelistentry.hxx
include/svtools/treelistentry.hxx
+3
-3
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,7 +53,7 @@ class SVT_DLLPUBLIC SvTreeListEntry
...
@@ -53,7 +53,7 @@ class SVT_DLLPUBLIC SvTreeListEntry
sal_uLong
nAbsPos
;
sal_uLong
nAbsPos
;
sal_uLong
nListPos
;
sal_uLong
nListPos
;
ItemsType
maItems
;
ItemsType
maItems
;
sal_Bool
bIsMarked
;
bool
bIsMarked
;
void
*
pUserData
;
void
*
pUserData
;
sal_uInt16
nEntryFlags
;
sal_uInt16
nEntryFlags
;
...
@@ -99,8 +99,8 @@ public:
...
@@ -99,8 +99,8 @@ public:
sal_uInt16
GetFlags
()
const
;
sal_uInt16
GetFlags
()
const
;
void
SetFlags
(
sal_uInt16
nFlags
);
void
SetFlags
(
sal_uInt16
nFlags
);
sal_B
ool
GetIsMarked
()
const
{
return
bIsMarked
;
}
b
ool
GetIsMarked
()
const
{
return
bIsMarked
;
}
void
SetMarked
(
sal_B
ool
IsMarked
)
{
bIsMarked
=
IsMarked
;
}
void
SetMarked
(
b
ool
IsMarked
)
{
bIsMarked
=
IsMarked
;
}
};
};
#endif
#endif
...
...
sc/source/ui/navipi/content.cxx
Dosyayı görüntüle @
64825d26
...
@@ -967,7 +967,7 @@ void ScContentTree::GetDrawNames( sal_uInt16 nType )
...
@@ -967,7 +967,7 @@ void ScContentTree::GetDrawNames( sal_uInt16 nType )
{
{
SvTreeListEntry
*
pChild
=
InsertEntry
(
aName
,
pParent
);
SvTreeListEntry
*
pChild
=
InsertEntry
(
aName
,
pParent
);
if
(
pChild
)
if
(
pChild
)
pChild
->
SetMarked
(
sal_F
alse
);
pChild
->
SetMarked
(
f
alse
);
Window
*
pWindow
=
NULL
;
Window
*
pWindow
=
NULL
;
ScTabViewShell
*
pScTabViewShell
=
NULL
;
ScTabViewShell
*
pScTabViewShell
=
NULL
;
ScDrawView
*
pScDrawView
=
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 )
...
@@ -357,7 +357,7 @@ void SdPageObjsTLB::MarkCurEntry( const OUString& rName )
if
(
aTmp1
!=
aTmp2
)
if
(
aTmp1
!=
aTmp2
)
{
{
// IA2 CWS. MT: Removed in SvTreeListEntry for now - only used in Sw/Sd/ScContentLBoxString, they should decide if they need this
// 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 )
...
@@ -368,11 +368,11 @@ void SdPageObjsTLB::MarkCurEntry( const OUString& rName )
aTmp2
=
GetEntryText
(
pEntry
);
aTmp2
=
GetEntryText
(
pEntry
);
if
(
aTmp2
==
rName
)
if
(
aTmp2
==
rName
)
{
{
pEntry
->
SetMarked
(
sal_T
rue
);
pEntry
->
SetMarked
(
t
rue
);
}
}
else
else
{
{
pEntry
->
SetMarked
(
sal_F
alse
);
pEntry
->
SetMarked
(
f
alse
);
}
}
}
}
}
}
...
@@ -385,7 +385,7 @@ void SdPageObjsTLB:: FreshCurEntry()
...
@@ -385,7 +385,7 @@ void SdPageObjsTLB:: FreshCurEntry()
SvTreeListEntry
*
pEntry
=
NULL
;
SvTreeListEntry
*
pEntry
=
NULL
;
for
(
pEntry
=
First
();
pEntry
;
pEntry
=
Next
(
pEntry
)
)
for
(
pEntry
=
First
();
pEntry
;
pEntry
=
Next
(
pEntry
)
)
{
{
pEntry
->
SetMarked
(
sal_F
alse
);
pEntry
->
SetMarked
(
f
alse
);
}
}
Invalidate
();
Invalidate
();
}
}
...
@@ -651,9 +651,9 @@ void SdPageObjsTLB::AddShapeList (
...
@@ -651,9 +651,9 @@ void SdPageObjsTLB::AddShapeList (
if
(
pEntry
)
if
(
pEntry
)
{
{
if
(
bMarked
)
if
(
bMarked
)
pEntry
->
SetMarked
(
sal_T
rue
);
pEntry
->
SetMarked
(
t
rue
);
else
else
pEntry
->
SetMarked
(
sal_False
);
pEntry
->
SetMarked
(
false
);
}
}
}
}
while
(
aIter
.
IsMore
()
)
while
(
aIter
.
IsMore
()
)
...
@@ -694,9 +694,9 @@ void SdPageObjsTLB::AddShapeList (
...
@@ -694,9 +694,9 @@ void SdPageObjsTLB::AddShapeList (
if
(
pNewEntry
)
if
(
pNewEntry
)
{
{
if
(
bMarked
)
if
(
bMarked
)
pNewEntry
->
SetMarked
(
sal_T
rue
);
pNewEntry
->
SetMarked
(
t
rue
);
else
else
pNewEntry
->
SetMarked
(
sal_False
);
pNewEntry
->
SetMarked
(
false
);
}
}
}
}
}
}
...
@@ -729,11 +729,11 @@ void SdPageObjsTLB::AddShapeList (
...
@@ -729,11 +729,11 @@ void SdPageObjsTLB::AddShapeList (
{
{
if
(
bMarked
)
if
(
bMarked
)
{
{
pNewEntry
->
SetMarked
(
sal_T
rue
);
pNewEntry
->
SetMarked
(
t
rue
);
}
}
else
else
{
{
pNewEntry
->
SetMarked
(
sal_False
);
pNewEntry
->
SetMarked
(
false
);
}
}
}
}
}
}
...
@@ -778,11 +778,11 @@ void SdPageObjsTLB::AddShapeList (
...
@@ -778,11 +778,11 @@ void SdPageObjsTLB::AddShapeList (
{
{
if
(
bMarked
)
if
(
bMarked
)
{
{
pNewEntry
->
SetMarked
(
sal_T
rue
);
pNewEntry
->
SetMarked
(
t
rue
);
}
}
else
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 )
...
@@ -1376,7 +1376,7 @@ void SwContentTree::RequestingChildren( SvTreeListEntry* pParent )
//else the corresponding entry is set false .
//else the corresponding entry is set false .
SdrObject
*
pObj
=
GetDrawingObjectsByContent
(
pCnt
);
SdrObject
*
pObj
=
GetDrawingObjectsByContent
(
pCnt
);
if
(
pChild
)
if
(
pChild
)
pChild
->
SetMarked
(
sal_F
alse
);
pChild
->
SetMarked
(
f
alse
);
if
(
pObj
)
if
(
pObj
)
{
{
SdrView
*
pDrawView
=
pActiveShell
->
GetDrawView
();
SdrView
*
pDrawView
=
pActiveShell
->
GetDrawView
();
...
@@ -1387,7 +1387,7 @@ void SwContentTree::RequestingChildren( SvTreeListEntry* pParent )
...
@@ -1387,7 +1387,7 @@ void SwContentTree::RequestingChildren( SvTreeListEntry* pParent )
if
(
Marked
)
if
(
Marked
)
{
{
//sEntry += String::CreateFromAscii(" *");
//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