summaryrefslogtreecommitdiff
path: root/noncore/tools/remote/buttondialog.cpp
Side-by-side diff
Diffstat (limited to 'noncore/tools/remote/buttondialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/remote/buttondialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/noncore/tools/remote/buttondialog.cpp b/noncore/tools/remote/buttondialog.cpp
index 7479e85..6ea4801 100644
--- a/noncore/tools/remote/buttondialog.cpp
+++ b/noncore/tools/remote/buttondialog.cpp
@@ -15,9 +15,9 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "buttondialog.h"
-ButtonDialog::ButtonDialog(QString buttonName, QWidget *parent=0, const char*name=0, bool modal=FALSE, WFlags f=0):QDialog(parent, name, modal, f)
+ButtonDialog::ButtonDialog(QString buttonName, QWidget *parent, const char*name, bool modal, WFlags f):QDialog(parent, name, modal, f)
{
setCaption(tr(buttonName));
QVBoxLayout *layout = new QVBoxLayout(this);
@@ -110,9 +110,9 @@ QStringList ButtonDialog::getRemotes()
perror("ButtonDialog::GetRemotes");
return NULL;
}
- if(std::connect(fd,(struct sockaddr *) &addr, sizeof(addr) ) == -1)
+ if(::connect(fd,(struct sockaddr *) &addr, sizeof(addr) ) == -1)
{
QMessageBox *mb = new QMessageBox("Error!",
"couldnt connect to socket",
QMessageBox::NoIcon,
@@ -153,9 +153,9 @@ QStringList ButtonDialog::getRemotes()
perror("ButtonDialog::GetRemotes");
return NULL;
}
- std::close(fd);
+ ::close(fd);
return list;
}
QStringList ButtonDialog::getButtons(const char *remoteName)
@@ -183,9 +183,9 @@ QStringList ButtonDialog::getButtons(const char *remoteName)
return NULL;
}
- if(std::connect(fd,(struct sockaddr *) &addr, sizeof(addr) ) == -1)
+ if(::connect(fd,(struct sockaddr *) &addr, sizeof(addr) ) == -1)
{
QMessageBox *mb = new QMessageBox("Error!",
"couldnt connect to socket",
QMessageBox::NoIcon,
@@ -229,9 +229,9 @@ QStringList ButtonDialog::getButtons(const char *remoteName)
perror("ButtonDialog::GetButtons");
return NULL;
}
- std::close(fd);
+ ::close(fd);
return list;
}