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)
4747{
4848 App::setApplicationName (" EEPROM Tool" );
4949 App::setApplicationVersion (" 1.0" );
50- parser.setApplicationDescription (" Read and write from supported EEPROM memorys ." );
50+ parser.setApplicationDescription (" Read and write from supported EEPROM memories ." );
5151
5252 parser.addHelpOption ();
5353 parser.addVersionOption ();
@@ -93,7 +93,7 @@ bool App::configure() {
9393 return false ;
9494 }
9595 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;
9797 m_standardOutput << parser.helpText () << Qt::endl;
9898 return false ;
9999 }
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class SerialPortReader : public QObject
2121
2222public:
2323 SerialPortReader (QSerialPort *serialPort, QObject *parent = nullptr );
24- virtual ~SerialPortReader () {m_standardOutput << " Datos recibidos : "
24+ virtual ~SerialPortReader () {m_standardOutput << " Data received : "
2525 << getRecibidos () << Qt::endl; }
2626
2727 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
1616 Q_OBJECT
1717public:
1818 explicit SerialPortWriter (QSerialPort *serialPort, QObject *parent = nullptr );
19- virtual ~SerialPortWriter () {m_standardOutput << " Datos enviados : "
19+ virtual ~SerialPortWriter () {m_standardOutput << " Data sent : "
2020 << enviados << Qt::endl; }
2121 void write (const QByteArray &writeData);
2222 void write (const char *writeData, qint64 len);
You can’t perform that action at this time.
0 commit comments