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
1145de86
Kaydet (Commit)
1145de86
authored
Kas 26, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
-Werror,-Winconsistent-missing-override
Change-Id: I41d1e0d5e6263255426efb011c7b4bb5ae6775b5
üst
0eb27ddf
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
18 deletions
+18
-18
dx_canvas.hxx
canvas/source/directx/dx_canvas.hxx
+3
-3
dx_canvasbitmap.hxx
canvas/source/directx/dx_canvasbitmap.hxx
+6
-6
dx_canvascustomsprite.hxx
canvas/source/directx/dx_canvascustomsprite.hxx
+4
-4
dx_spritecanvas.hxx
canvas/source/directx/dx_spritecanvas.hxx
+5
-5
No files found.
canvas/source/directx/dx_canvas.hxx
Dosyayı görüntüle @
1145de86
...
...
@@ -92,7 +92,7 @@ namespace dxcanvas
DECLARE_UNO3_XCOMPONENT_AGG_DEFAULTS
(
Canvas
,
GraphicDeviceBase1_Base
,
::
cppu
::
WeakComponentImplHelperBase
)
// XServiceName
virtual
OUString
SAL_CALL
getServiceName
(
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getServiceName
(
)
throw
(
css
::
uno
::
RuntimeException
)
override
;
private
:
css
::
uno
::
Sequence
<
css
::
uno
::
Any
>
maArguments
;
...
...
@@ -149,10 +149,10 @@ namespace dxcanvas
DECLARE_UNO3_XCOMPONENT_AGG_DEFAULTS
(
BitmapCanvas
,
GraphicDeviceBase2_Base
,
::
cppu
::
WeakComponentImplHelperBase
)
// XServiceName
virtual
OUString
SAL_CALL
getServiceName
(
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getServiceName
(
)
throw
(
css
::
uno
::
RuntimeException
)
override
;
// BitmapProvider
virtual
IBitmapSharedPtr
getBitmap
()
const
;
virtual
IBitmapSharedPtr
getBitmap
()
const
override
;
private
:
css
::
uno
::
Sequence
<
css
::
uno
::
Any
>
maArguments
;
...
...
canvas/source/directx/dx_canvasbitmap.hxx
Dosyayı görüntüle @
1145de86
...
...
@@ -70,15 +70,15 @@ namespace dxcanvas
virtual
void
disposeThis
()
override
;
// XServiceInfo
virtual
OUString
SAL_CALL
getImplementationName
(
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
(
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getImplementationName
(
)
throw
(
css
::
uno
::
RuntimeException
)
override
;
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
)
override
;
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
(
)
throw
(
css
::
uno
::
RuntimeException
)
override
;
// BitmapProvider
virtual
IBitmapSharedPtr
getBitmap
()
const
{
return
mpBitmap
;
}
virtual
IBitmapSharedPtr
getBitmap
()
const
override
{
return
mpBitmap
;
}
virtual
css
::
uno
::
Any
SAL_CALL
getFastPropertyValue
(
sal_Int32
nHandle
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setFastPropertyValue
(
sal_Int32
,
const
css
::
uno
::
Any
&
)
throw
(
css
::
uno
::
RuntimeException
)
{}
virtual
css
::
uno
::
Any
SAL_CALL
getFastPropertyValue
(
sal_Int32
nHandle
)
throw
(
css
::
uno
::
RuntimeException
)
override
;
virtual
void
SAL_CALL
setFastPropertyValue
(
sal_Int32
,
const
css
::
uno
::
Any
&
)
throw
(
css
::
uno
::
RuntimeException
)
override
{}
private
:
/** MUST hold here, too, since CanvasHelper only contains a
...
...
canvas/source/directx/dx_canvascustomsprite.hxx
Dosyayı görüntüle @
1145de86
...
...
@@ -112,12 +112,12 @@ namespace dxcanvas
DECLARE_UNO3_XCOMPONENT_AGG_DEFAULTS
(
CanvasCustomSprite
,
CanvasCustomSpriteBase_Base
,
::
cppu
::
WeakComponentImplHelperBase
)
// XServiceInfo
virtual
OUString
SAL_CALL
getImplementationName
()
throw
(
css
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getImplementationName
()
throw
(
css
::
uno
::
RuntimeException
)
override
;
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
)
override
;
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
)
override
;
// Sprite
virtual
void
redraw
()
const
;
virtual
void
redraw
()
const
override
;
private
:
/** MUST hold here, too, since BitmapCanvasHelper only contains a
...
...
canvas/source/directx/dx_spritecanvas.hxx
Dosyayı görüntüle @
1145de86
...
...
@@ -118,14 +118,14 @@ namespace dxcanvas
DECLARE_UNO3_XCOMPONENT_AGG_DEFAULTS
(
SpriteCanvas
,
WindowGraphicDeviceBase_Base
,
::
cppu
::
WeakComponentImplHelperBase
)
// XBufferController (partial)
virtual
sal_Bool
SAL_CALL
showBuffer
(
sal_Bool
bUpdateAll
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
switchBuffer
(
sal_Bool
bUpdateAll
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
showBuffer
(
sal_Bool
bUpdateAll
)
throw
(
css
::
uno
::
RuntimeException
)
override
;
virtual
sal_Bool
SAL_CALL
switchBuffer
(
sal_Bool
bUpdateAll
)
throw
(
css
::
uno
::
RuntimeException
)
override
;
// XSpriteCanvas (partial)
virtual
sal_Bool
SAL_CALL
updateScreen
(
sal_Bool
bUpdateAll
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
updateScreen
(
sal_Bool
bUpdateAll
)
throw
(
css
::
uno
::
RuntimeException
)
override
;
// XServiceName
virtual
OUString
SAL_CALL
getServiceName
(
)
throw
(
css
::
uno
::
RuntimeException
);
virtual
OUString
SAL_CALL
getServiceName
(
)
throw
(
css
::
uno
::
RuntimeException
)
override
;
/// Retrieve rendermodule object for this Canvas
const
IDXRenderModuleSharedPtr
&
getRenderModule
()
const
;
...
...
@@ -134,7 +134,7 @@ namespace dxcanvas
const
DXSurfaceBitmapSharedPtr
&
getBackBuffer
()
const
;
// BitmapProvider
virtual
IBitmapSharedPtr
getBitmap
()
const
;
virtual
IBitmapSharedPtr
getBitmap
()
const
override
;
private
:
css
::
uno
::
Sequence
<
css
::
uno
::
Any
>
maArguments
;
...
...
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