Skip to content
Permalink
Browse files
Remove unnecessary connect() calls - they were generating a warning o…
…n stdout

git-svn-id: http://svn.osgeo.org/qgis/trunk@5547 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Jun 25, 2006
1 parent 07e02c9 commit 2b3d499
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
@@ -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)));
@@ -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)),

0 comments on commit 2b3d499

Please sign in to comment.