summaryrefslogtreecommitdiff
path: root/noncore/tools/remote/learntab.cpp
Side-by-side diff
Diffstat (limited to 'noncore/tools/remote/learntab.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/remote/learntab.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/tools/remote/learntab.cpp b/noncore/tools/remote/learntab.cpp
index 1c746c5..7582161 100644
--- a/noncore/tools/remote/learntab.cpp
+++ b/noncore/tools/remote/learntab.cpp
@@ -78,26 +78,26 @@ QStringList LearnTab::getRemotes()
"couldnt connect to socket",
QMessageBox::NoIcon,
QMessageBox::Ok,
QMessageBox::NoButton,
QMessageBox::NoButton);
mb->exec();
- perror("ButtonDialog::GetRemotes");
+ perror("LearnTab::GetRemotes");
return NULL;
}
if(::connect(fd,(struct sockaddr *) &addr, sizeof(addr) ) == -1)
{
QMessageBox *mb = new QMessageBox("Error!",
"couldnt connect to socket",
QMessageBox::NoIcon,
QMessageBox::Ok,
QMessageBox::NoButton,
QMessageBox::NoButton);
mb->exec();
- perror("ButtonDialog::GetRemotes");
+ perror("LearnTab::GetRemotes");
return NULL;
}
write(fd, write_buffer, strlen(write_buffer));
for(i=0; i<5; i++)
@@ -121,13 +121,13 @@ QStringList LearnTab::getRemotes()
"bad packet",
QMessageBox::NoIcon,
QMessageBox::Ok,
QMessageBox::NoButton,
QMessageBox::NoButton);
mb->exec();
- perror("ButtonDialog::GetRemotes");
+ perror("LearnTab::GetRemotes");
return NULL;
}
::close(fd);
return list;
}