File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ void App::setCommandLineOptions(QCommandLineParser& parser)
47
47
{
48
48
App::setApplicationName (" EEPROM Tool" );
49
49
App::setApplicationVersion (" 1.0" );
50
- parser.setApplicationDescription (" Read and write from supported EEPROM memorys ." );
50
+ parser.setApplicationDescription (" Read and write from supported EEPROM memories ." );
51
51
52
52
parser.addHelpOption ();
53
53
parser.addVersionOption ();
@@ -93,7 +93,7 @@ bool App::configure() {
93
93
return false ;
94
94
}
95
95
if (args.size () < 1 ) {
96
- m_standardOutput << " Error: you must select the memory target." << Qt::endl;
96
+ m_standardOutput << " You must select the memory target." << Qt::endl;
97
97
m_standardOutput << parser.helpText () << Qt::endl;
98
98
return false ;
99
99
}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class SerialPortReader : public QObject
21
21
22
22
public:
23
23
SerialPortReader (QSerialPort *serialPort, QObject *parent = nullptr );
24
- virtual ~SerialPortReader () {m_standardOutput << " Datos recibidos : "
24
+ virtual ~SerialPortReader () {m_standardOutput << " Data received : "
25
25
<< getRecibidos () << Qt::endl; }
26
26
27
27
inline qint64 getRecibidos () const {return m_recibidos;}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class SerialPortWriter : public QObject
16
16
Q_OBJECT
17
17
public:
18
18
explicit SerialPortWriter (QSerialPort *serialPort, QObject *parent = nullptr );
19
- virtual ~SerialPortWriter () {m_standardOutput << " Datos enviados : "
19
+ virtual ~SerialPortWriter () {m_standardOutput << " Data sent : "
20
20
<< enviados << Qt::endl; }
21
21
void write (const QByteArray &writeData);
22
22
void write (const char *writeData, qint64 len);
You can’t perform that action at this time.
0 commit comments