Skip to content

Commit

Permalink
fix core only
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Jun 23, 2021
1 parent b0b22bb commit 4d6ca4f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/core/auth/qgsauthmethod.cpp
Expand Up @@ -16,7 +16,13 @@

#include "qgsauthmethod.h"

QWidget *QgsAuthMethod::editWidget( QWidget *parent ) const {Q_UNUSED( parent ) return nullptr;}
#ifdef HAVE_GUI
QWidget *QgsAuthMethod::editWidget( QWidget *parent ) const
{
Q_UNUSED( parent )
return nullptr;
}
#endif

QgsAuthMethod::QgsAuthMethod()
#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
Expand Down

0 comments on commit 4d6ca4f

Please sign in to comment.