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
8711842d
Kaydet (Commit)
8711842d
authored
Ock 17, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bool improvements
Change-Id: I19b429741a2ba972bef8863008657823b9bb7f91
üst
a2b1afaf
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
9 deletions
+11
-9
drawdoc2.cxx
sd/source/core/drawdoc2.cxx
+1
-1
pubdlg.cxx
sd/source/filter/html/pubdlg.cxx
+2
-2
sdtransform.cxx
sd/source/filter/xml/sdtransform.cxx
+3
-1
unomodel.hxx
sd/source/ui/inc/unomodel.hxx
+2
-2
TableDesignPane.cxx
sd/source/ui/table/TableDesignPane.cxx
+2
-2
EventMultiplexer.cxx
sd/source/ui/tools/EventMultiplexer.cxx
+1
-1
No files found.
sd/source/core/drawdoc2.cxx
Dosyayı görüntüle @
8711842d
...
...
@@ -323,7 +323,7 @@ void SdDrawDocument::UpdatePageRelativeURLs(SdPage* pPage, sal_uInt16 nPos, sal_
bool
bNotesLink
=
(
aURLCopy
.
getLength
()
>=
sNotes
.
getLength
()
+
3
&&
aURLCopy
.
endsWith
(
sNotes
)
);
if
(
bNotesLink
^
bNotes
)
if
(
bNotesLink
!=
bNotes
)
continue
;
// no compatible link and page
if
(
bNotes
)
...
...
sd/source/filter/html/pubdlg.cxx
Dosyayı görüntüle @
8711842d
...
...
@@ -129,7 +129,7 @@ public:
SdPublishingDesign
();
int
operator
==
(
const
SdPublishingDesign
&
rDesign
)
const
;
bool
operator
==
(
const
SdPublishingDesign
&
rDesign
)
const
;
friend
SvStream
&
operator
>>
(
SvStream
&
rIn
,
SdPublishingDesign
&
rDesign
);
friend
SvStream
&
WriteSdPublishingDesign
(
SvStream
&
rOut
,
const
SdPublishingDesign
&
rDesign
);
};
...
...
@@ -179,7 +179,7 @@ SdPublishingDesign::SdPublishingDesign()
}
// Compares the values without paying attention to the name
int
SdPublishingDesign
::
operator
==
(
const
SdPublishingDesign
&
rDesign
)
const
bool
SdPublishingDesign
::
operator
==
(
const
SdPublishingDesign
&
rDesign
)
const
{
return
(
...
...
sd/source/filter/xml/sdtransform.cxx
Dosyayı görüntüle @
8711842d
...
...
@@ -313,7 +313,9 @@ bool SdTransformOOo2xDocument::transformItemSet( SfxItemSet& rSet, bool bNumberi
bool
SdTransformOOo2xDocument
::
removeAlienAttributes
(
SfxItemSet
&
rSet
)
{
return
removeAlienAttributes
(
rSet
,
EE_PARA_XMLATTRIBS
)
|
removeAlienAttributes
(
rSet
,
SDRATTR_XMLATTRIBUTES
);
bool
b
=
removeAlienAttributes
(
rSet
,
EE_PARA_XMLATTRIBS
);
b
|=
removeAlienAttributes
(
rSet
,
SDRATTR_XMLATTRIBUTES
);
return
b
;
}
bool
SdTransformOOo2xDocument
::
removeAlienAttributes
(
SfxItemSet
&
rSet
,
sal_uInt16
nWhich
)
...
...
sd/source/ui/inc/unomodel.hxx
Dosyayı görüntüle @
8711842d
...
...
@@ -127,8 +127,8 @@ public:
static
rtl
::
Reference
<
SdXImpressDocument
>
GetModel
(
SdDrawDocument
*
pDoc
);
// intern
virtual
int
operator
==
(
const
SdXImpressDocument
&
rModel
)
const
{
return
mpDoc
==
rModel
.
mpDoc
;
}
virtual
int
operator
!=
(
const
SdXImpressDocument
&
rModel
)
const
{
return
mpDoc
!=
rModel
.
mpDoc
;
}
virtual
bool
operator
==
(
const
SdXImpressDocument
&
rModel
)
const
{
return
mpDoc
==
rModel
.
mpDoc
;
}
virtual
bool
operator
!=
(
const
SdXImpressDocument
&
rModel
)
const
{
return
mpDoc
!=
rModel
.
mpDoc
;
}
::
sd
::
DrawDocShell
*
GetDocShell
()
const
{
return
mpDocShell
;
}
SdDrawDocument
*
GetDoc
()
const
{
return
mpDoc
;
}
...
...
sd/source/ui/table/TableDesignPane.cxx
Dosyayı görüntüle @
8711842d
...
...
@@ -842,9 +842,9 @@ short TableDesignDialog::Execute()
if
(
aImpl
.
isOptionsChanged
()
)
aImpl
.
ApplyOptions
();
return
true
;
return
RET_OK
;
}
return
false
;
return
RET_CANCEL
;
}
// ====================================================================
...
...
sd/source/ui/tools/EventMultiplexer.cxx
Dosyayı görüntüle @
8711842d
...
...
@@ -773,7 +773,7 @@ void EventMultiplexer::Implementation::CallListeners (EventMultiplexerEvent& rEv
ListenerList
::
const_iterator
iListenerEnd
(
aCopyListeners
.
end
());
for
(;
iListener
!=
iListenerEnd
;
++
iListener
)
{
if
((
iListener
->
second
&&
rEvent
.
meEventId
)
!=
0
)
if
((
iListener
->
second
&&
rEvent
.
meEventId
))
iListener
->
first
.
Call
(
&
rEvent
);
}
}
...
...
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