diff options
Diffstat (limited to 'kcachegrind/kcachegrind/configuration.h')
-rw-r--r-- | kcachegrind/kcachegrind/configuration.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/kcachegrind/kcachegrind/configuration.h b/kcachegrind/kcachegrind/configuration.h index 5543ed81..478f6176 100644 --- a/kcachegrind/kcachegrind/configuration.h +++ b/kcachegrind/kcachegrind/configuration.h @@ -23,9 +23,9 @@ #ifndef CONFIGURATION_H #define CONFIGURATION_H -#include <qcolor.h> -#include <qstringlist.h> -#include <qdict.h> +#include <tqcolor.h> +#include <tqstringlist.h> +#include <tqdict.h> #include "tracedata.h" @@ -44,10 +44,10 @@ public: static void readOptions(KConfig*); // color for visualisation of an object - static QColor functionColor(TraceItem::CostType gt, TraceFunction*); - static QColor groupColor(TraceItem*); - static QColor costTypeColor(TraceCostType*); - static QStringList sourceDirs(TraceData*, TraceObject* o = 0); + static TQColor functionColor(TraceItem::CostType gt, TraceFunction*); + static TQColor groupColor(TraceItem*); + static TQColor costTypeColor(TraceCostType*); + static TQStringList sourceDirs(TraceData*, TraceObject* o = 0); static bool showPercentage(); static bool showExpanded(); static bool showCycles(); @@ -57,7 +57,7 @@ public: // max symbol lengths/count in tooltip/popup static int maxSymbolLength(); // strip a symbol name according to <maxSymbolLength> - static QString shortenSymbol(QString); + static TQString shortenSymbol(TQString); static int maxSymbolCount(); // max. number of items in lists static int maxListCount(); @@ -76,17 +76,17 @@ public: private: struct ColorSetting { - QString name; - QColor color; + TQString name; + TQColor color; bool automatic; }; - static ColorSetting* color(QString, bool createNew = true); + static ColorSetting* color(TQString, bool createNew = true); - QDict<ColorSetting> _colors; + TQDict<ColorSetting> _colors; - QStringList _generalSourceDirs; - QDict<QStringList> _objectSourceDirs; + TQStringList _generalSourceDirs; + TQDict<TQStringList> _objectSourceDirs; bool _showPercentage, _showExpanded, _showCycles; double _cycleCut; |