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
d7034051
Kaydet (Commit)
d7034051
authored
May 19, 2014
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
WaE: overriding virtual function declaration not marked 'SAL_OVERRIDE'
Change-Id: I00aaacadf108f2cc5d57963991e5c99ea4485056
üst
9a4a48d2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
27 deletions
+27
-27
svpclient.cxx
vcl/workben/svpclient.cxx
+9
-9
svptest.cxx
vcl/workben/svptest.cxx
+9
-9
vcldemo.cxx
vcl/workben/vcldemo.cxx
+9
-9
No files found.
vcl/workben/svpclient.cxx
Dosyayı görüntüle @
d7034051
...
...
@@ -84,17 +84,17 @@ class MyWin : public WorkWindow
ImageControl
m_aImage
;
PushButton
m_aQuitButton
;
public
:
MyWin
(
Window
*
pParent
,
WinBits
nWinStyle
);
MyWin
(
Window
*
pParent
,
WinBits
nWinStyle
);
v
oid
MouseMove
(
const
MouseEvent
&
rMEvt
)
;
v
oid
MouseButtonDown
(
const
MouseEvent
&
rMEvt
)
;
v
oid
MouseButtonUp
(
const
MouseEvent
&
rMEvt
)
;
v
oid
KeyInput
(
const
KeyEvent
&
rKEvt
)
;
v
oid
KeyUp
(
const
KeyEvent
&
rKEvt
)
;
v
oid
Paint
(
const
Rectangle
&
rRect
)
;
v
oid
Resize
()
;
v
irtual
void
MouseMove
(
const
MouseEvent
&
rMEvt
)
SAL_OVERRIDE
;
v
irtual
void
MouseButtonDown
(
const
MouseEvent
&
rMEvt
)
SAL_OVERRIDE
;
v
irtual
void
MouseButtonUp
(
const
MouseEvent
&
rMEvt
)
SAL_OVERRIDE
;
v
irtual
void
KeyInput
(
const
KeyEvent
&
rKEvt
)
SAL_OVERRIDE
;
v
irtual
void
KeyUp
(
const
KeyEvent
&
rKEvt
)
SAL_OVERRIDE
;
v
irtual
void
Paint
(
const
Rectangle
&
rRect
)
SAL_OVERRIDE
;
v
irtual
void
Resize
()
SAL_OVERRIDE
;
bool
Close
()
;
virtual
bool
Close
()
SAL_OVERRIDE
;
void
parseList
(
const
OString
&
rList
);
OString
processCommand
(
const
OString
&
rCommand
);
...
...
vcl/workben/svptest.cxx
Dosyayı görüntüle @
d7034051
...
...
@@ -69,15 +69,15 @@ class MyWin : public WorkWindow
{
Bitmap
m_aBitmap
;
public
:
MyWin
(
Window
*
pParent
,
WinBits
nWinStyle
);
v
oid
MouseMove
(
const
MouseEvent
&
rMEvt
)
;
v
oid
MouseButtonDown
(
const
MouseEvent
&
rMEvt
)
;
v
oid
MouseButtonUp
(
const
MouseEvent
&
rMEvt
)
;
v
oid
KeyInput
(
const
KeyEvent
&
rKEvt
)
;
v
oid
KeyUp
(
const
KeyEvent
&
rKEvt
)
;
v
oid
Paint
(
const
Rectangle
&
rRect
)
;
v
oid
Resize
()
;
MyWin
(
Window
*
pParent
,
WinBits
nWinStyle
);
v
irtual
void
MouseMove
(
const
MouseEvent
&
rMEvt
)
SAL_OVERRIDE
;
v
irtual
void
MouseButtonDown
(
const
MouseEvent
&
rMEvt
)
SAL_OVERRIDE
;
v
irtual
void
MouseButtonUp
(
const
MouseEvent
&
rMEvt
)
SAL_OVERRIDE
;
v
irtual
void
KeyInput
(
const
KeyEvent
&
rKEvt
)
SAL_OVERRIDE
;
v
irtual
void
KeyUp
(
const
KeyEvent
&
rKEvt
)
SAL_OVERRIDE
;
v
irtual
void
Paint
(
const
Rectangle
&
rRect
)
SAL_OVERRIDE
;
v
irtual
void
Resize
()
SAL_OVERRIDE
;
};
void
Main
()
...
...
vcl/workben/vcldemo.cxx
Dosyayı görüntüle @
d7034051
...
...
@@ -63,15 +63,15 @@ SAL_IMPLEMENT_MAIN()
class
MyWin
:
public
WorkWindow
{
public
:
MyWin
(
Window
*
pParent
,
WinBits
nWinStyle
);
v
oid
MouseMove
(
const
MouseEvent
&
rMEvt
)
;
v
oid
MouseButtonDown
(
const
MouseEvent
&
rMEvt
)
;
v
oid
MouseButtonUp
(
const
MouseEvent
&
rMEvt
)
;
v
oid
KeyInput
(
const
KeyEvent
&
rKEvt
)
;
v
oid
KeyUp
(
const
KeyEvent
&
rKEvt
)
;
v
oid
Paint
(
const
Rectangle
&
rRect
)
;
v
oid
Resize
()
;
MyWin
(
Window
*
pParent
,
WinBits
nWinStyle
);
v
irtual
void
MouseMove
(
const
MouseEvent
&
rMEvt
)
SAL_OVERRIDE
;
v
irtual
void
MouseButtonDown
(
const
MouseEvent
&
rMEvt
)
SAL_OVERRIDE
;
v
irtual
void
MouseButtonUp
(
const
MouseEvent
&
rMEvt
)
SAL_OVERRIDE
;
v
irtual
void
KeyInput
(
const
KeyEvent
&
rKEvt
)
SAL_OVERRIDE
;
v
irtual
void
KeyUp
(
const
KeyEvent
&
rKEvt
)
SAL_OVERRIDE
;
v
irtual
void
Paint
(
const
Rectangle
&
rRect
)
SAL_OVERRIDE
;
v
irtual
void
Resize
()
SAL_OVERRIDE
;
};
void
Main
()
...
...
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