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
920887fe
Kaydet (Commit)
920887fe
authored
Agu 28, 2012
tarafından
Oliver-Rainer Wittmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
some minor changes in module sw to avoid warning from compiler under windows/cygwin environment
üst
0de515b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
9 deletions
+17
-9
dcontact.cxx
sw/source/core/draw/dcontact.cxx
+6
-3
unoframe.cxx
sw/source/core/unocore/unoframe.cxx
+11
-6
No files found.
sw/source/core/draw/dcontact.cxx
Dosyayı görüntüle @
920887fe
...
...
@@ -1506,10 +1506,13 @@ void SwDrawContact::_Changed( const SdrObject& rObj,
if
(
bAnchoredAsChar
)
{
//-->Modified for i119654,2012.6.8
SwFrm
*
pAnchorFrame
=
NULL
;
if
(
pAnchoredDrawObj
&&
(
pAnchorFrame
=
const_cast
<
SwAnchoredDrawObject
*>
(
pAnchoredDrawObj
)
->
AnchorFrm
()
)
)
SwFrm
*
pAnchorFrame
=
pAnchoredDrawObj
?
const_cast
<
SwAnchoredDrawObject
*>
(
pAnchoredDrawObj
)
->
AnchorFrm
()
:
NULL
;
if
(
pAnchorFrame
)
{
pAnchorFrame
->
Prepare
(
PREP_FLY_ATTR_CHG
,
GetFmt
()
);
}
//<--
}
// <--
...
...
sw/source/core/unocore/unoframe.cxx
Dosyayı görüntüle @
920887fe
...
...
@@ -657,12 +657,17 @@ sal_Bool SwGraphicProperties_Impl::AnyToItemSet(
rtl
::
Reference
<
SwDocStyleSheet
>
xStyle
(
new
SwDocStyleSheet
(
*
pStyle
)
);
const
::
SfxItemSet
*
pItemSet
=
&
xStyle
->
GetItemSet
();
//Begin Bug 119922
sal_Bool
bOasis
=
sal_False
;
SfxMedium
*
pMedium
=
NULL
;
const
SfxFilter
*
pFilter
=
NULL
;
if
(
(
pMedium
=
pDoc
->
GetDocShell
()
->
GetMedium
()
)
&&
(
pFilter
=
pMedium
->
GetFilter
()
)
)
bOasis
=
pFilter
->
GetVersion
()
>
SOFFICE_FILEFORMAT_60
;
sal_Bool
bOasis
=
sal_False
;
{
const
SfxMedium
*
pMedium
=
pDoc
->
GetDocShell
()
->
GetMedium
();
const
SfxFilter
*
pFilter
=
pMedium
?
pMedium
->
GetFilter
()
:
NULL
;
if
(
pMedium
&&
pFilter
)
{
bOasis
=
pFilter
->
GetVersion
()
>
SOFFICE_FILEFORMAT_60
;
}
}
bRet
=
FillBaseProperties
(
rFrmSet
,
*
pItemSet
,
rSizeFound
,
bOasis
);
//End Bug 119922
lcl_FillMirror
(
rGrSet
,
*
pItemSet
,
pHEvenMirror
,
pHOddMirror
,
pVMirror
,
bRet
);
...
...
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