Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Graphics
Skanlite
Commits
5c01aee8
Commit
5c01aee8
authored
Nov 03, 2021
by
Kevin Funk
☕
Browse files
Minor: s/Q_DECL_OVERRIDE/override/
parent
ac00005b
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/ImageViewer.h
View file @
5c01aee8
...
...
@@ -38,8 +38,8 @@ public Q_SLOTS:
void
zoomActualSize
();
protected:
void
wheelEvent
(
QWheelEvent
*
e
)
Q_DECL_OVERRIDE
;
void
drawBackground
(
QPainter
*
painter
,
const
QRectF
&
rect
)
Q_DECL_OVERRIDE
;
void
wheelEvent
(
QWheelEvent
*
e
)
override
;
void
drawBackground
(
QPainter
*
painter
,
const
QRectF
&
rect
)
override
;
private:
struct
Private
;
...
...
src/SkanliteImageSaver.h
View file @
5c01aee8
...
...
@@ -28,7 +28,7 @@ Q_SIGNALS:
void
imageSaved
(
const
QUrl
&
url
,
const
QString
&
name
,
bool
success
);
protected:
void
run
()
Q_DECL_OVERRIDE
;
void
run
()
override
;
private:
struct
Private
;
...
...
src/skanlite.h
View file @
5c01aee8
...
...
@@ -77,7 +77,7 @@ private Q_SLOTS:
void
updateWindowTitle
(
const
QString
&
deviceName
,
const
QString
&
deviceVendor
=
QString
(),
const
QString
&
deviceModel
=
QString
());
protected:
void
closeEvent
(
QCloseEvent
*
event
)
Q_DECL_OVERRIDE
;
void
closeEvent
(
QCloseEvent
*
event
)
override
;
private:
KSaneWidget
*
m_ksanew
=
nullptr
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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