Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Krita
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tusooa Zhu
Krita
Commits
52d097f8
Commit
52d097f8
authored
Sep 29, 2014
by
Arjen Hiemstra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Q_UNUSED with an unknown type causes a build failure on windows
parent
da14dac2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
7 deletions
+2
-7
libs/kopageapp/KoPAViewMode.cpp
libs/kopageapp/KoPAViewMode.cpp
+1
-4
libs/kopageapp/tools/backgroundTool/KoPABackgroundTool.cpp
libs/kopageapp/tools/backgroundTool/KoPABackgroundTool.cpp
+1
-3
No files found.
libs/kopageapp/KoPAViewMode.cpp
View file @
52d097f8
...
...
@@ -102,11 +102,8 @@ const KoPageLayout &KoPAViewMode::activePageLayout() const
return
m_view
->
activePage
()
->
pageLayout
();
}
void
KoPAViewMode
::
changePageLayout
(
const
KoPageLayout
&
pageLayout
,
bool
applyToDocument
,
KUndo2Command
*
parent
)
void
KoPAViewMode
::
changePageLayout
(
const
KoPageLayout
&
/*pageLayout*/
,
bool
/*applyToDocument*/
,
KUndo2Command
*/
*
parent
*/
)
{
Q_UNUSED
(
pageLayout
);
Q_UNUSED
(
applyToDocument
);
Q_UNUSED
(
parent
);
}
QPointF
KoPAViewMode
::
origin
()
...
...
libs/kopageapp/tools/backgroundTool/KoPABackgroundTool.cpp
View file @
52d097f8
...
...
@@ -50,10 +50,8 @@ KoPABackgroundTool::~KoPABackgroundTool()
}
void
KoPABackgroundTool
::
paint
(
QPainter
&
painter
,
const
KoViewConverter
&
converter
)
void
KoPABackgroundTool
::
paint
(
QPainter
&
/*painter*/
,
const
KoViewConverter
&
/*converter*/
)
{
Q_UNUSED
(
painter
);
Q_UNUSED
(
converter
);
}
void
KoPABackgroundTool
::
activate
(
ToolActivation
toolActivation
,
const
QSet
<
KoShape
*>
&
)
...
...
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