Skip to content

Commit 2b3d499

Browse files
author
g_j_m
committedJun 25, 2006
Remove unnecessary connect() calls - they were generating a warning on stdout
git-svn-id: http://svn.osgeo.org/qgis/trunk@5547 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 07e02c9 commit 2b3d499

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed
 

‎src/plugins/delimited_text/qgsdelimitedtextplugin.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,6 @@ void QgsDelimitedTextPlugin::run()
122122
new QgsDelimitedTextPluginGui(qGisInterface, qgisMainWindowPointer,
123123
QgisGui::ModalDialogFlags);
124124
//listen for when the layer has been made so we can draw it
125-
connect(myQgsDelimitedTextPluginGui,
126-
SIGNAL(drawRasterLayer(QString)),
127-
this, SLOT(drawRasterLayer(QString)));
128125
connect(myQgsDelimitedTextPluginGui,
129126
SIGNAL(drawVectorLayer(QString,QString,QString)),
130127
this, SLOT(drawVectorLayer(QString,QString,QString)));

‎src/plugins/gps_importer/qgsgpsplugin.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,6 @@ void QgsGPSPlugin::run()
142142
new QgsGPSPluginGui(mImporters, mDevices, gpxLayers, mMainWindowPointer,
143143
QgisGui::ModalDialogFlags);
144144
//listen for when the layer has been made so we can draw it
145-
connect(myPluginGui, SIGNAL(drawRasterLayer(QString)),
146-
this, SLOT(drawRasterLayer(QString)));
147145
connect(myPluginGui, SIGNAL(drawVectorLayer(QString,QString,QString)),
148146
this, SLOT(drawVectorLayer(QString,QString,QString)));
149147
connect(myPluginGui, SIGNAL(loadGPXFile(QString, bool, bool, bool)),

0 commit comments

Comments
 (0)
Please sign in to comment.