diff options
Diffstat (limited to 'kspread/kspread_autofill.h')
-rw-r--r-- | kspread/kspread_autofill.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/kspread/kspread_autofill.h b/kspread/kspread_autofill.h index 088f1751..ac597711 100644 --- a/kspread/kspread_autofill.h +++ b/kspread/kspread_autofill.h @@ -26,11 +26,11 @@ #ifndef __kspread_autofill_h__ #define __kspread_autofill_h__ -#include <qdatetime.h> -#include <qmemarray.h> -#include <qstring.h> -#include <qptrlist.h> -#include <qstringlist.h> +#include <tqdatetime.h> +#include <tqmemarray.h> +#include <tqstring.h> +#include <tqptrlist.h> +#include <tqstringlist.h> namespace KSpread { @@ -47,31 +47,31 @@ public: AutoFillSequenceItem( int _i ); AutoFillSequenceItem( double _d ); - AutoFillSequenceItem( const QString &_str ); + AutoFillSequenceItem( const TQString &_str ); bool getDelta( AutoFillSequenceItem *_seq, double &delta ); - QString getSuccessor( int _no, double _delta ); - QString getPredecessor( int _no, double _delta ); + TQString getSuccessor( int _no, double _delta ); + TQString getPredecessor( int _no, double _delta ); Type getType()const { return m_Type; } int getIValue()const { return m_IValue; } double getDValue()const { return m_DValue; } - QString getString()const { return m_String; } + TQString getString()const { return m_String; } int getIOtherEnd()const {return m_OtherEnd; } int getIOtherBegin()const {return m_OtherBegin; } - static QStringList *other; - static QStringList *month; - static QStringList *day; - static QStringList *shortMonth; - static QStringList *shortDay; + static TQStringList *other; + static TQStringList *month; + static TQStringList *day; + static TQStringList *shortMonth; + static TQStringList *shortDay; protected: int m_IValue; double m_DValue; int m_OtherBegin; int m_OtherEnd; - QString m_String; + TQString m_String; Type m_Type; }; @@ -91,7 +91,7 @@ public: void fillCell( Cell *src, Cell *dest, AutoFillDeltaSequence *delta, int _block, bool down = true ); protected: - QPtrList<AutoFillSequenceItem> sequence; + TQPtrList<AutoFillSequenceItem> sequence; }; class AutoFillDeltaSequence @@ -104,13 +104,13 @@ public: bool equals( AutoFillDeltaSequence *_delta ); - QMemArray<double>* getSequence() { return m_sequence; } + TQMemArray<double>* getSequence() { return m_sequence; } double getItemDelta( int _pos ); protected: bool m_ok; - QMemArray<double>* m_sequence; + TQMemArray<double>* m_sequence; }; } // namespace KSpread |