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
e40ceb81
Kaydet (Commit)
e40ceb81
authored
Mar 12, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Mark overriding BufferedGraphicDeviceBase class templ mem funs as SAL_OVERRIDE
Change-Id: I707fea8100c686ab8232eaf6e4d9a348abdb5236
üst
288a6d89
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
bufferedgraphicdevicebase.hxx
include/canvas/base/bufferedgraphicdevicebase.hxx
+9
-9
No files found.
include/canvas/base/bufferedgraphicdevicebase.hxx
Dosyayı görüntüle @
e40ceb81
...
...
@@ -94,14 +94,14 @@ namespace canvas
}
// XGraphicDevice
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XBufferController
>
SAL_CALL
getBufferController
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XBufferController
>
SAL_CALL
getBufferController
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
return
this
;
}
// XBufferController
virtual
::
sal_Int32
SAL_CALL
createBuffers
(
::
sal_Int32
nBuffers
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
tools
::
verifyRange
(
nBuffers
,
(
sal_Int32
)
1
);
...
...
@@ -110,7 +110,7 @@ namespace canvas
return
BaseType
::
maDeviceHelper
.
createBuffers
(
nBuffers
);
}
virtual
void
SAL_CALL
destroyBuffers
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
void
SAL_CALL
destroyBuffers
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
...
...
@@ -119,14 +119,14 @@ namespace canvas
virtual
::
sal_Bool
SAL_CALL
showBuffer
(
::
sal_Bool
bUpdateAll
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
std
::
exception
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
return
BaseType
::
maDeviceHelper
.
showBuffer
(
mbIsVisible
,
bUpdateAll
);
}
virtual
::
sal_Bool
SAL_CALL
switchBuffer
(
::
sal_Bool
bUpdateAll
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
::
sal_Bool
SAL_CALL
switchBuffer
(
::
sal_Bool
bUpdateAll
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
...
...
@@ -234,24 +234,24 @@ namespace canvas
BaseType
::
disposeEventSource
(
Source
);
}
virtual
void
SAL_CALL
windowResized
(
const
::
com
::
sun
::
star
::
awt
::
WindowEvent
&
e
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
void
SAL_CALL
windowResized
(
const
::
com
::
sun
::
star
::
awt
::
WindowEvent
&
e
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
boundsChanged
(
e
);
}
virtual
void
SAL_CALL
windowMoved
(
const
::
com
::
sun
::
star
::
awt
::
WindowEvent
&
e
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
void
SAL_CALL
windowMoved
(
const
::
com
::
sun
::
star
::
awt
::
WindowEvent
&
e
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
boundsChanged
(
e
);
}
virtual
void
SAL_CALL
windowShown
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
void
SAL_CALL
windowShown
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
typename
BaseType
::
MutexType
aGuard
(
BaseType
::
m_aMutex
);
mbIsVisible
=
true
;
}
virtual
void
SAL_CALL
windowHidden
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
void
SAL_CALL
windowHidden
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
typename
BaseType
::
MutexType
aGuard
(
BaseType
::
m_aMutex
);
...
...
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