1- #include " EzBuilder .h"
1+ #include " Builder .h"
22
3- EzBuilder::EzBuilder (QObject *parent) : QObject(parent)
3+ Builder::Builder (QObject *parent) : QObject(parent)
44{
55}
66
7- void EzBuilder ::setParameters (QString comp, QString incl, QString compPath, QString projFile, QString compstat)
7+ void Builder ::setParameters (QString comp, QString incl, QString compPath, QString projFile, QString compstat)
88{
99 compilerStr = comp;
1010 compilerPath = compPath;
@@ -13,15 +13,15 @@ void EzBuilder::setParameters(QString comp, QString incl, QString compPath, QStr
1313 compileResult = compstat;
1414}
1515
16- void EzBuilder ::setObjects (QLabel *stat, QLabel *progsize, QProgressBar *progbar, QComboBox *ports)
16+ void Builder ::setObjects (QLabel *stat, QLabel *progsize, QProgressBar *progbar, QComboBox *ports)
1717{
1818 msgLabel = stat;
1919 sizeLabel = progsize;
2020 progress = progbar;
2121 cbPort = ports;
2222}
2323
24- QString EzBuilder ::filePathName (QString fileName)
24+ QString Builder ::filePathName (QString fileName)
2525{
2626 QString rets;
2727 if (fileName.lastIndexOf (" /" ) > -1 )
@@ -31,28 +31,28 @@ QString EzBuilder::filePathName(QString fileName)
3131 return rets;
3232}
3333
34- int EzBuilder ::runCompiler (QString copts)
34+ int Builder ::runCompiler (QString copts)
3535{
3636 // satisfy warnings only
3737 if (copts.length ())
3838 return 0 ;
3939 return 0 ;
4040}
4141
42- void EzBuilder ::compilerError (QProcess::ProcessError error)
42+ void Builder ::compilerError (QProcess::ProcessError error)
4343{
4444 // satisfy warnings only
4545 if (error != QProcess::Crashed) return ;
4646}
4747
48- void EzBuilder ::compilerFinished (int exitCode, QProcess::ExitStatus status)
48+ void Builder ::compilerFinished (int exitCode, QProcess::ExitStatus status)
4949{
5050 // satisfy warnings only
5151 if (exitCode) return ;
5252 if (status != QProcess::CrashExit) return ;
5353}
5454
55- void EzBuilder ::procReadyRead ()
55+ void Builder ::procReadyRead ()
5656{
5757}
5858
0 commit comments