Skip to content

Commit d36e47c

Browse files
committedApr 23, 2017
fix windows build (followup e0d20e5)
1 parent f7b7254 commit d36e47c

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed
 

‎src/core/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ SET(QGIS_CORE_SRCS
163163
qgslegendstyle.cpp
164164
qgslocalec.cpp
165165
qgslogger.cpp
166+
qgsmapdecoration.cpp
166167
qgsmaphittest.cpp
167168
qgsmaplayer.cpp
168169
qgsmaplayerlegend.cpp

‎src/core/qgsmapdecoration.cpp

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/***************************************************************************
2+
qgsmapdecoration.cpp
3+
----------------
4+
begin : April 2017
5+
copyright : (C) 2017 by Mathieu Pellerin
6+
email : nirvn dot asia at gmail dot com
7+
***************************************************************************/
8+
9+
/***************************************************************************
10+
* *
11+
* This program is free software; you can redistribute it and/or modify *
12+
* it under the terms of the GNU General Public License as published by *
13+
* the Free Software Foundation; either version 2 of the License, or *
14+
* (at your option) any later version. *
15+
* *
16+
***************************************************************************/
17+
18+
#include "qgsmapdecoration.h"
19+
20+
QgsMapDecoration::QgsMapDecoration()
21+
{
22+
}

‎src/core/qgsmapdecoration.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class CORE_EXPORT QgsMapDecoration
3737
/**
3838
* Constructor for QgsMapDecoration.
3939
*/
40-
QgsMapDecoration() {}
40+
QgsMapDecoration();
4141

4242
virtual ~QgsMapDecoration() = default;
4343

1 commit comments

Comments
 (1)

nirvn commented on Apr 23, 2017

@nirvn
Contributor

Thanks @jef-n .

Please sign in to comment.