mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Make wms lib load under windows build with qmake. This required disabling sig / slots for now. It has little impact other than disabling the display of some status messages.
git-svn-id: http://svn.osgeo.org/qgis/trunk@6217 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
d211936d23
commit
a1147b8404
@ -1893,7 +1893,9 @@ void QgsWmsProvider::showStatusMessage(QString const & theMessage)
|
||||
{
|
||||
// Pass-through
|
||||
// TODO: See if we can connect signal-to-signal. This is a kludge according to the Qt doc.
|
||||
#ifndef WIN32
|
||||
emit setStatus(theMessage);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
@ -338,8 +338,10 @@
|
||||
*/
|
||||
class QgsWmsProvider : public QgsRasterDataProvider
|
||||
{
|
||||
|
||||
|
||||
#ifndef WIN32
|
||||
Q_OBJECT
|
||||
#endif
|
||||
|
||||
public:
|
||||
|
||||
@ -610,6 +612,8 @@ public:
|
||||
QString description() const;
|
||||
|
||||
|
||||
#ifndef WIN32
|
||||
|
||||
signals:
|
||||
|
||||
/** \brief emit a signal to notify of a progress event */
|
||||
@ -620,6 +624,7 @@ signals:
|
||||
|
||||
|
||||
public slots:
|
||||
#endif
|
||||
|
||||
void showStatusMessage(QString const & theMessage);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user