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
14c680eb
Kaydet (Commit)
14c680eb
authored
Eyl 15, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sd: sal_Bool -> bool
Change-Id: Ic59f5f89017c2a50185596e1e264dcde260d3e70
üst
91285075
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
FrameView.hxx
sd/source/ui/inc/FrameView.hxx
+2
-2
slideshowimpl.cxx
sd/source/ui/slideshow/slideshowimpl.cxx
+1
-1
slideshowimpl.hxx
sd/source/ui/slideshow/slideshowimpl.hxx
+1
-1
frmview.cxx
sd/source/ui/view/frmview.cxx
+2
-2
No files found.
sd/source/ui/inc/FrameView.hxx
Dosyayı görüntüle @
14c680eb
...
...
@@ -169,8 +169,8 @@ public:
void
SetIsNavigatorShowingAllShapes
(
const
bool
bIsNavigatorShowingAllShapes
);
bool
IsNavigatorShowingAllShapes
(
void
)
const
{
return
mbIsNavigatorShowingAllShapes
;}
virtual
void
WriteUserDataSequence
(
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>&
,
sal_Bool
bBrowse
=
sal_F
alse
);
virtual
void
ReadUserDataSequence
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>&
,
sal_Bool
bBrowse
=
sal_F
alse
);
virtual
void
WriteUserDataSequence
(
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>&
,
bool
bBrowse
=
f
alse
);
virtual
void
ReadUserDataSequence
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>&
,
bool
bBrowse
=
f
alse
);
private
:
sal_uInt16
mnRefCount
;
...
...
sd/source/ui/slideshow/slideshowimpl.cxx
Dosyayı görüntüle @
14c680eb
...
...
@@ -2920,7 +2920,7 @@ void SAL_CALL SlideshowImpl::setPenColor( sal_Int32 nColor ) throw (RuntimeExcep
setUsePen
(
true
);
// enable pen mode, update color
}
void
SAL_CALL
SlideshowImpl
::
setUseEraser
(
sal_B
ool
/*_usepen*/
)
throw
(
css
::
uno
::
RuntimeException
)
void
SAL_CALL
SlideshowImpl
::
setUseEraser
(
b
ool
/*_usepen*/
)
throw
(
css
::
uno
::
RuntimeException
)
{
}
...
...
sd/source/ui/slideshow/slideshowimpl.hxx
Dosyayı görüntüle @
14c680eb
...
...
@@ -175,7 +175,7 @@ public:
virtual
void
SAL_CALL
setUsePen
(
sal_Bool
_usepen
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
::
sal_Int32
SAL_CALL
getPenColor
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setPenColor
(
::
sal_Int32
_pencolor
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setUseEraser
(
sal_B
ool
_usepen
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setUseEraser
(
b
ool
_usepen
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
double
SAL_CALL
getPenWidth
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setPenWidth
(
double
dStrokeWidth
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
setEraseAllInk
(
bool
bEraseAllInk
)
throw
(
css
::
uno
::
RuntimeException
);
...
...
sd/source/ui/view/frmview.cxx
Dosyayı görüntüle @
14c680eb
...
...
@@ -400,7 +400,7 @@ static OUString createHelpLinesString( const SdrHelpLineList& rHelpLines )
}
#define addValue( n, v ) push_back( std::pair< OUString, Any >( OUString( n ), v ) )
void
FrameView
::
WriteUserDataSequence
(
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>&
rValues
,
sal_B
ool
)
void
FrameView
::
WriteUserDataSequence
(
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>&
rValues
,
b
ool
)
{
std
::
vector
<
std
::
pair
<
OUString
,
Any
>
>
aUserData
;
...
...
@@ -550,7 +550,7 @@ static void createHelpLinesFromString( const OUString& rLines, SdrHelpLineList&
}
}
void
FrameView
::
ReadUserDataSequence
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>&
rSequence
,
sal_B
ool
)
void
FrameView
::
ReadUserDataSequence
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>&
rSequence
,
b
ool
)
{
const
sal_Int32
nLength
=
rSequence
.
getLength
();
if
(
nLength
)
...
...
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