summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_tracker_hatire
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2015-10-29 10:39:00 +0100
committerStanislaw Halik <sthalik@misaki.pl>2015-10-29 10:39:00 +0100
commit27fff8e9557cd10691e2b7c850f008666efa9647 (patch)
treee42af55054cacfaaea2e53750d04d4e8b91618fc /ftnoir_tracker_hatire
parent5049312cc8847f5bd8cc9cf32dd42e39ae0bb1f5 (diff)
xargs sed -i -e s/'FaceTrackNoIR Error/Error/g'
Diffstat (limited to 'ftnoir_tracker_hatire')
-rw-r--r--ftnoir_tracker_hatire/ftnoir_tracker_hat.cpp8
-rw-r--r--ftnoir_tracker_hatire/ftnoir_tracker_hat_dialog.cpp4
2 files changed, 6 insertions, 6 deletions
diff --git a/ftnoir_tracker_hatire/ftnoir_tracker_hat.cpp b/ftnoir_tracker_hatire/ftnoir_tracker_hat.cpp
index 57ee132c..eea1cbca 100644
--- a/ftnoir_tracker_hatire/ftnoir_tracker_hat.cpp
+++ b/ftnoir_tracker_hatire/ftnoir_tracker_hat.cpp
@@ -230,11 +230,11 @@ void FTNoIR_Tracker::Initialize( QFrame *videoframe )
}
} else {
- QMessageBox::warning(0,"FaceTrackNoIR Error", ComPort->errorString(),QMessageBox::Ok,QMessageBox::NoButton);
+ QMessageBox::warning(0,"Error", ComPort->errorString(),QMessageBox::Ok,QMessageBox::NoButton);
}
}
else {
- QMessageBox::warning(0,"FaceTrackNoIR Error", "Unable to open ComPort",QMessageBox::Ok,QMessageBox::NoButton);
+ QMessageBox::warning(0,"Error", "Unable to open ComPort",QMessageBox::Ok,QMessageBox::NoButton);
delete ComPort;
ComPort = NULL;
}
@@ -351,11 +351,11 @@ void FTNoIR_Tracker::start_tracker(QFrame*)
Log("Port setup, waiting for HAT frames to process");
qDebug() << QTime::currentTime() << " HAT wait MPU ";
} else {
- QMessageBox::warning(0,"FaceTrackNoIR Error", ComPort->errorString(),QMessageBox::Ok,QMessageBox::NoButton);
+ QMessageBox::warning(0,"Error", ComPort->errorString(),QMessageBox::Ok,QMessageBox::NoButton);
}
}
else {
- QMessageBox::warning(0,"FaceTrackNoIR Error", "Unable to open ComPort: " + ComPort->errorString(), QMessageBox::Ok,QMessageBox::NoButton);
+ QMessageBox::warning(0,"Error", "Unable to open ComPort: " + ComPort->errorString(), QMessageBox::Ok,QMessageBox::NoButton);
delete ComPort;
ComPort = NULL;
}
diff --git a/ftnoir_tracker_hatire/ftnoir_tracker_hat_dialog.cpp b/ftnoir_tracker_hatire/ftnoir_tracker_hat_dialog.cpp
index 90cdeec1..3ef1a764 100644
--- a/ftnoir_tracker_hatire/ftnoir_tracker_hat_dialog.cpp
+++ b/ftnoir_tracker_hatire/ftnoir_tracker_hat_dialog.cpp
@@ -37,7 +37,7 @@ TrackerControls::TrackerControls() : theTracker(NULL), settingsDirty(false), tim
// Stop if no SerialPort dispo
if (ui.cbSerialPort->count()<1) {
- QMessageBox::critical(this,"FaceTrackNoIR Error", "No SerialPort avaible");
+ QMessageBox::critical(this,"Error", "No SerialPort avaible");
} else {
int indxport =ui.cbSerialPort->findText(settings.SerialPortName,Qt::MatchExactly );
@@ -45,7 +45,7 @@ TrackerControls::TrackerControls() : theTracker(NULL), settingsDirty(false), tim
ui.cbSerialPort->setCurrentIndex(indxport);
} else {
if (settings.SerialPortName != "")
- QMessageBox::warning(this,"FaceTrackNoIR Error", "Selected SerialPort modified");
+ QMessageBox::warning(this,"Error", "Selected SerialPort modified");
ui.cbSerialPort-> setCurrentIndex(indxport);
}
}