diff options
Diffstat (limited to 'src/languages/picprogrammer.h')
-rw-r--r-- | src/languages/picprogrammer.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/languages/picprogrammer.h b/src/languages/picprogrammer.h index 580cf6b..1c5f406 100644 --- a/src/languages/picprogrammer.h +++ b/src/languages/picprogrammer.h @@ -28,18 +28,18 @@ class ProgrammerConfig */ void reset(); - QString initCommand; - QString readCommand; - QString writeCommand; - QString verifyCommand; - QString blankCheckCommand; - QString eraseCommand; + TQString initCommand; + TQString readCommand; + TQString writeCommand; + TQString verifyCommand; + TQString blankCheckCommand; + TQString eraseCommand; - QString description; - QString executable; // The name of the program executable + TQString description; + TQString executable; // The name of the program executable }; -typedef QMap< QString, ProgrammerConfig > ProgrammerConfigMap; +typedef TQMap< TQString, ProgrammerConfig > ProgrammerConfigMap; @@ -72,26 +72,26 @@ class PicProgrammerSettings * created. The name is case insensitive (although the full case of the * name will be stored if a new ProgrammerConfig is created). */ - ProgrammerConfig config( const QString & name ); + ProgrammerConfig config( const TQString & name ); /** * Removes the config (if it is custom) with the give name. */ - void removeConfig( const QString & name ); + void removeConfig( const TQString & name ); /** * Sets the ProgrammerConfig with the given name (or creates one if no * such config exists). The name is case insensitive. */ - void saveConfig( const QString & name, const ProgrammerConfig & config ); + void saveConfig( const TQString & name, const ProgrammerConfig & config ); /** * @param makeLowercase whether the names should be converted to * lowercase before returning. * @return a list of names of the custom and predefined configs. */ - QStringList configNames( bool makeLowercase ) const; + TQStringList configNames( bool makeLowercase ) const; /** * @return whether the given config is predefined. */ - bool isPredefined( const QString & name ) const; + bool isPredefined( const TQString & name ) const; protected: /** @@ -113,15 +113,15 @@ class PicProgrammerSettings class PicProgrammer : public ExternalLanguage { public: - PicProgrammer( ProcessChain *processChain, KTechlab *parent ); + PicProgrammer( ProcessChain *processChain, KTechlab *tqparent ); ~PicProgrammer(); virtual void processInput( ProcessOptions options ); virtual ProcessOptions::ProcessPath::Path outputPath( ProcessOptions::ProcessPath::Path inputPath ) const; protected: - virtual bool isError( const QString &message ) const; - virtual bool isWarning( const QString &message ) const; + virtual bool isError( const TQString &message ) const; + virtual bool isWarning( const TQString &message ) const; }; #endif |