diff options
Diffstat (limited to 'ksim/library')
-rw-r--r-- | ksim/library/chart.h | 2 | ||||
-rw-r--r-- | ksim/library/label.h | 2 | ||||
-rw-r--r-- | ksim/library/led.h | 2 | ||||
-rw-r--r-- | ksim/library/pluginloader.h | 2 | ||||
-rw-r--r-- | ksim/library/pluginmodule.h | 4 | ||||
-rw-r--r-- | ksim/library/progress.h | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/ksim/library/chart.h b/ksim/library/chart.h index 6f8cfeb..e2e7494 100644 --- a/ksim/library/chart.h +++ b/ksim/library/chart.h @@ -36,7 +36,7 @@ namespace KSim class KDE_EXPORT Chart : public TQWidget, public KSim::Base { Q_OBJECT - TQ_OBJECT + public: enum DataType { DataIn = 0, DataOut }; enum LabelType { Label = 0, Progress, Led }; diff --git a/ksim/library/label.h b/ksim/library/label.h index 9e24c95..dce2adc 100644 --- a/ksim/library/label.h +++ b/ksim/library/label.h @@ -37,7 +37,7 @@ namespace KSim class KDE_EXPORT Label : public TQWidget, public KSim::Base { Q_OBJECT - TQ_OBJECT + public: /** * Constructs a KSim::Label. diff --git a/ksim/library/led.h b/ksim/library/led.h index 6dcecce..510f959 100644 --- a/ksim/library/led.h +++ b/ksim/library/led.h @@ -107,7 +107,7 @@ namespace KSim class KDE_EXPORT LedLabel : public KSim::Progress { Q_OBJECT - TQ_OBJECT + public: /** * Constructs a KSim::LedLabel. diff --git a/ksim/library/pluginloader.h b/ksim/library/pluginloader.h index 7110c72..912297c 100644 --- a/ksim/library/pluginloader.h +++ b/ksim/library/pluginloader.h @@ -64,7 +64,7 @@ namespace KSim class KDE_EXPORT PluginLoader : public TQObject { Q_OBJECT - TQ_OBJECT + friend class MainView; public: enum SearchType { Name = 0, DesktopFile, LibName }; diff --git a/ksim/library/pluginmodule.h b/ksim/library/pluginmodule.h index 56d491c..78cc21b 100644 --- a/ksim/library/pluginmodule.h +++ b/ksim/library/pluginmodule.h @@ -114,7 +114,7 @@ namespace KSim class KDE_EXPORT PluginPage : public TQWidget { Q_OBJECT - TQ_OBJECT + public: /** * constructor for PluginPage @@ -163,7 +163,7 @@ namespace KSim class KDE_EXPORT PluginView : public TQWidget { Q_OBJECT - TQ_OBJECT + public: /** * constructor for PluginView diff --git a/ksim/library/progress.h b/ksim/library/progress.h index 415c9fa..c857000 100644 --- a/ksim/library/progress.h +++ b/ksim/library/progress.h @@ -33,7 +33,7 @@ namespace KSim class KDE_EXPORT Progress : public KSim::Label { Q_OBJECT - TQ_OBJECT + public: enum ProgressType { Panel, Meter }; /** |