Skip to content

Commit

Permalink
fix windows build (followup e0d20e5)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Apr 23, 2017
1 parent f7b7254 commit d36e47c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/core/CMakeLists.txt
Expand Up @@ -163,6 +163,7 @@ SET(QGIS_CORE_SRCS
qgslegendstyle.cpp
qgslocalec.cpp
qgslogger.cpp
qgsmapdecoration.cpp
qgsmaphittest.cpp
qgsmaplayer.cpp
qgsmaplayerlegend.cpp
Expand Down
22 changes: 22 additions & 0 deletions src/core/qgsmapdecoration.cpp
@@ -0,0 +1,22 @@
/***************************************************************************
qgsmapdecoration.cpp
----------------
begin : April 2017
copyright : (C) 2017 by Mathieu Pellerin
email : nirvn dot asia at gmail dot com
***************************************************************************/

/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/

#include "qgsmapdecoration.h"

QgsMapDecoration::QgsMapDecoration()
{
}
2 changes: 1 addition & 1 deletion src/core/qgsmapdecoration.h
Expand Up @@ -37,7 +37,7 @@ class CORE_EXPORT QgsMapDecoration
/**
* Constructor for QgsMapDecoration.
*/
QgsMapDecoration() {}
QgsMapDecoration();

virtual ~QgsMapDecoration() = default;

Expand Down

1 comment on commit d36e47c

@nirvn
Copy link
Contributor

@nirvn nirvn commented on d36e47c Apr 23, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @jef-n .

Please sign in to comment.