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:
timlinux 2006-12-08 21:36:36 +00:00
parent d211936d23
commit a1147b8404
2 changed files with 8 additions and 1 deletions

View File

@ -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
}

View File

@ -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);