diff options
Diffstat (limited to 'ksim/monitors/filesystem')
-rw-r--r-- | ksim/monitors/filesystem/filesystemwidget.cpp | 4 | ||||
-rw-r--r-- | ksim/monitors/filesystem/filesystemwidget.h | 2 | ||||
-rw-r--r-- | ksim/monitors/filesystem/fsystemconfig.cpp | 8 | ||||
-rw-r--r-- | ksim/monitors/filesystem/fsystemconfig.h | 2 | ||||
-rw-r--r-- | ksim/monitors/filesystem/ksimfsystem.cpp | 4 | ||||
-rw-r--r-- | ksim/monitors/filesystem/ksimfsystem.h | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/ksim/monitors/filesystem/filesystemwidget.cpp b/ksim/monitors/filesystem/filesystemwidget.cpp index 4149aee..fb04470 100644 --- a/ksim/monitors/filesystem/filesystemwidget.cpp +++ b/ksim/monitors/filesystem/filesystemwidget.cpp @@ -85,8 +85,8 @@ void FilesystemWidget::Filesystem::setValue(int value) m_display->setValue(value); } -FilesystemWidget::FilesystemWidget(TQWidget *tqparent, const char *name) - : TQWidget(tqparent, name) +FilesystemWidget::FilesystemWidget(TQWidget *parent, const char *name) + : TQWidget(parent, name) { m_list.setAutoDelete(true); m_layout = new TQVBoxLayout(this); diff --git a/ksim/monitors/filesystem/filesystemwidget.h b/ksim/monitors/filesystem/filesystemwidget.h index b709125..a79a34f 100644 --- a/ksim/monitors/filesystem/filesystemwidget.h +++ b/ksim/monitors/filesystem/filesystemwidget.h @@ -32,7 +32,7 @@ class FilesystemWidget : public TQWidget Q_OBJECT TQ_OBJECT public: - FilesystemWidget(TQWidget *tqparent, const char *name); + FilesystemWidget(TQWidget *parent, const char *name); ~FilesystemWidget(); void append(int, const TQString &); diff --git a/ksim/monitors/filesystem/fsystemconfig.cpp b/ksim/monitors/filesystem/fsystemconfig.cpp index 937d2cc..6b8c928 100644 --- a/ksim/monitors/filesystem/fsystemconfig.cpp +++ b/ksim/monitors/filesystem/fsystemconfig.cpp @@ -37,17 +37,17 @@ class FSysViewItem : public TQCheckListItem { public: - FSysViewItem(TQListView *tqparent, const TQString &text1, + FSysViewItem(TQListView *parent, const TQString &text1, const TQString &text2, const TQString &text3) - : TQCheckListItem(tqparent, text1, CheckBox) + : TQCheckListItem(parent, text1, CheckBox) { setText(1, text2); setText(2, text3); } }; -FsystemConfig::FsystemConfig(KSim::PluginObject *tqparent, const char *name) - : KSim::PluginPage(tqparent, name) +FsystemConfig::FsystemConfig(KSim::PluginObject *parent, const char *name) + : KSim::PluginPage(parent, name) { m_mainLayout = new TQGridLayout(this); m_mainLayout->setSpacing(6); diff --git a/ksim/monitors/filesystem/fsystemconfig.h b/ksim/monitors/filesystem/fsystemconfig.h index 96fccf1..82eafb7 100644 --- a/ksim/monitors/filesystem/fsystemconfig.h +++ b/ksim/monitors/filesystem/fsystemconfig.h @@ -35,7 +35,7 @@ class FsystemConfig : public KSim::PluginPage Q_OBJECT TQ_OBJECT public: - FsystemConfig(KSim::PluginObject *tqparent, const char *name); + FsystemConfig(KSim::PluginObject *parent, const char *name); ~FsystemConfig(); virtual void saveConfig(); diff --git a/ksim/monitors/filesystem/ksimfsystem.cpp b/ksim/monitors/filesystem/ksimfsystem.cpp index f73ce3d..9b08da9 100644 --- a/ksim/monitors/filesystem/ksimfsystem.cpp +++ b/ksim/monitors/filesystem/ksimfsystem.cpp @@ -81,9 +81,9 @@ void PluginModule::showAbout() KAboutApplication(&aboutData).exec(); } -Fsystem::Fsystem(KSim::PluginObject *tqparent, const char *name) +Fsystem::Fsystem(KSim::PluginObject *parent, const char *name) : DCOPObject("fsystem"), - KSim::PluginView(tqparent, name) + KSim::PluginView(parent, name) { config()->setGroup("Fsystem"); TQVBoxLayout *vbLayout = new TQVBoxLayout(this); diff --git a/ksim/monitors/filesystem/ksimfsystem.h b/ksim/monitors/filesystem/ksimfsystem.h index cf8dc9e..a9eefc6 100644 --- a/ksim/monitors/filesystem/ksimfsystem.h +++ b/ksim/monitors/filesystem/ksimfsystem.h @@ -53,7 +53,7 @@ class Fsystem : public KSim::PluginView, public FsystemIface /** * construtor of Fsystem, calls all init functions to create the plugin. */ - Fsystem(KSim::PluginObject *tqparent, const char *name); + Fsystem(KSim::PluginObject *parent, const char *name); ~Fsystem(); virtual void reparseConfig(); |