Skip to content

Commit

Permalink
Remove unnecessary connect() calls - they were generating a warning o…
Browse files Browse the repository at this point in the history
…n stdout

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5547 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Jun 25, 2006
1 parent 9b1c05e commit 07538fa
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions src/plugins/delimited_text/qgsdelimitedtextplugin.cpp
Expand Up @@ -122,9 +122,6 @@ void QgsDelimitedTextPlugin::run()
new QgsDelimitedTextPluginGui(qGisInterface, qgisMainWindowPointer,
QgisGui::ModalDialogFlags);
//listen for when the layer has been made so we can draw it
connect(myQgsDelimitedTextPluginGui,
SIGNAL(drawRasterLayer(QString)),
this, SLOT(drawRasterLayer(QString)));
connect(myQgsDelimitedTextPluginGui,
SIGNAL(drawVectorLayer(QString,QString,QString)),
this, SLOT(drawVectorLayer(QString,QString,QString)));
Expand Down
2 changes: 0 additions & 2 deletions src/plugins/gps_importer/qgsgpsplugin.cpp
Expand Up @@ -142,8 +142,6 @@ void QgsGPSPlugin::run()
new QgsGPSPluginGui(mImporters, mDevices, gpxLayers, mMainWindowPointer,
QgisGui::ModalDialogFlags);
//listen for when the layer has been made so we can draw it
connect(myPluginGui, SIGNAL(drawRasterLayer(QString)),
this, SLOT(drawRasterLayer(QString)));
connect(myPluginGui, SIGNAL(drawVectorLayer(QString,QString,QString)),
this, SLOT(drawVectorLayer(QString,QString,QString)));
connect(myPluginGui, SIGNAL(loadGPXFile(QString, bool, bool, bool)),
Expand Down

0 comments on commit 07538fa

Please sign in to comment.