Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix some runtime signal/slot warnings
git-svn-id: http://svn.osgeo.org/qgis/trunk@6540 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Feb 6, 2007
1 parent 95f0a37 commit 5de3a79
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/plugins/delimited_text/qgsdelimitedtextplugingui.cpp
Expand Up @@ -33,8 +33,8 @@ QgsDelimitedTextPluginGui::QgsDelimitedTextPluginGui(QgisInterface * _qI, QWidge
setupUi(this);
pbnOK = buttonBox->button(QDialogButtonBox::Ok);
pbnParse = buttonBox->addButton(tr("Parse"), QDialogButtonBox::ActionRole);
connect(pbnParse, SIGNAL(clicked()), this, SLOT(on_pbnParse_clicked()));
connect(txtFilePath, SIGNAL(textChanged(const QString&)), this, SLOT(on_pbnParse_clicked()));
connect(pbnParse, SIGNAL(clicked()), this, SLOT(pbnParse_clicked()));
connect(txtFilePath, SIGNAL(textChanged(const QString&)), this, SLOT(pbnParse_clicked()));
enableButtons();
// at startup, fetch the last used delimiter and directory from
// settings
Expand All @@ -55,7 +55,7 @@ void QgsDelimitedTextPluginGui::on_btnBrowseForFile_clicked()
{
getOpenFileName();
}
void QgsDelimitedTextPluginGui::on_pbnParse_clicked()
void QgsDelimitedTextPluginGui::pbnParse_clicked()
{
updateFieldLists();
}
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/delimited_text/qgsdelimitedtextplugingui.h
Expand Up @@ -45,7 +45,7 @@ class QgsDelimitedTextPluginGui : public QDialog, private Ui::QgsDelimitedTextPl
void on_buttonBox_rejected();
void on_buttonBox_helpRequested();
void on_btnBrowseForFile_clicked();
void on_pbnParse_clicked();
void pbnParse_clicked();

signals:
void drawRasterLayer(QString);
Expand Down

0 comments on commit 5de3a79

Please sign in to comment.