Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix windows build (also reapplies 584f192, lost in a6f1ec)
  • Loading branch information
jef-n committed May 23, 2015
1 parent 32463d0 commit 97864da
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions CMakeLists.txt
Expand Up @@ -593,8 +593,6 @@ ELSE (WIN32)

ENDIF(WIN32)

SET(DLLIMPORT "")

ADD_DEFINITIONS("-DCORE_EXPORT=${DLLIMPORT}")
ADD_DEFINITIONS("-DGUI_EXPORT=${DLLIMPORT}")
ADD_DEFINITIONS("-DPYTHON_EXPORT=${DLLIMPORT}")
Expand Down
4 changes: 1 addition & 3 deletions src/providers/grass/qgsgrassimport.cpp
Expand Up @@ -13,8 +13,6 @@
* (at your option) any later version. *
* *
***************************************************************************/
#include <unistd.h>

#include <QByteArray>
#include <QtConcurrentRun>

Expand Down Expand Up @@ -216,7 +214,7 @@ bool QgsGrassRasterImport::import()
{
if ( !block->convert( qgis_out_type ) )
{
setError( "cannot vonvert data type" );
setError( "cannot convert data type" );
delete block;
return false;
}
Expand Down

1 comment on commit 97864da

@m-kuhn
Copy link
Member

@m-kuhn m-kuhn commented on 97864da May 23, 2015

Choose a reason for hiding this comment

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

Thanks @jef-n The meaning was actually to get less "Fix Windows Build" commit messages, not more ;)

Please sign in to comment.