diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:39:40 -0600 |
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:39:40 -0600 |
| commit | 1fc61c6e1d0a2b34f7b1d0de181bb4e6f954a8c2 (patch) | |
| tree | fdf34e0c9a4211231bb084fb40d30d2dff677dea /src/languages/sdcc.cpp | |
| parent | abb8cd68f820cfe0c96965136890a6bdd1093db5 (diff) | |
| download | ktechlab-1fc61c6e1d0a2b34f7b1d0de181bb4e6f954a8c2.tar.gz ktechlab-1fc61c6e1d0a2b34f7b1d0de181bb4e6f954a8c2.zip | |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/languages/sdcc.cpp')
| -rw-r--r-- | src/languages/sdcc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/languages/sdcc.cpp b/src/languages/sdcc.cpp index ea1845d..96cf54c 100644 --- a/src/languages/sdcc.cpp +++ b/src/languages/sdcc.cpp @@ -40,7 +40,7 @@ void SDCC::processInput( ProcessOptions options ) MicroInfo * info = MicroLibrary::self()->microInfoWithID( options.m_picID ); if (!info) { - outputError( i18n("Could not find PIC with ID \"%1\".").tqarg(options.m_picID) ); + outputError( i18n("Could not find PIC with ID \"%1\".").arg(options.m_picID) ); return; } @@ -50,7 +50,7 @@ void SDCC::processInput( ProcessOptions options ) //BEGIN Pass custom sdcc options -#define ARG(text,option) if ( KTLConfig::text() ) *m_languageProcess << ( TQString("--%1").tqarg(option) ); +#define ARG(text,option) if ( KTLConfig::text() ) *m_languageProcess << ( TQString("--%1").arg(option) ); // General ARG( sDCC_nostdlib, "nostdlib" ) ARG( sDCC_nostdinc, "nostdinc" ) |
