diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 04:10:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 04:10:07 +0000 |
commit | fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf (patch) | |
tree | 9eda848e56fcb862fdfdf479adeccd95b6fe387a /ksysguard/gui/WorkSheet.h | |
parent | 02f67d0e1355b79b1806746efb0f2f640e57f13d (diff) | |
download | tdebase-fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf.tar.gz tdebase-fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1212480 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksysguard/gui/WorkSheet.h')
-rw-r--r-- | ksysguard/gui/WorkSheet.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ksysguard/gui/WorkSheet.h b/ksysguard/gui/WorkSheet.h index 3f8e84575..37bafbda3 100644 --- a/ksysguard/gui/WorkSheet.h +++ b/ksysguard/gui/WorkSheet.h @@ -36,10 +36,10 @@ class TQString; class TQStringList; /** - A WorkSheet tqcontains the displays to visualize the sensor results. When + A WorkSheet contains the displays to visualize the sensor results. When creating the WorkSheet you must specify the number of columns. Displays - can be added and removed on the fly. The grid tqlayout will handle the - tqlayout. The number of columns can not be changed. Displays are added by + can be added and removed on the fly. The grid layout will handle the + layout. The number of columns can not be changed. Displays are added by dragging a sensor from the sensor browser over the WorkSheet. */ class WorkSheet : public TQWidget, public KSGRD::SensorBoard @@ -90,7 +90,7 @@ class WorkSheet : public TQWidget, public KSGRD::SensorBoard void titleChanged( TQWidget *sheet ); protected: - virtual TQSize tqsizeHint() const; + virtual TQSize sizeHint() const; void dragEnterEvent( TQDragEnterEvent* ); void dropEvent( TQDropEvent* ); void customEvent( TQCustomEvent* ); @@ -98,9 +98,9 @@ class WorkSheet : public TQWidget, public KSGRD::SensorBoard private: void removeDisplay( KSGRD::SensorDisplay *display ); - bool tqreplaceDisplay( uint row, uint column, TQDomElement& element ); + bool replaceDisplay( uint row, uint column, TQDomElement& element ); - void tqreplaceDisplay( uint row, uint column, + void replaceDisplay( uint row, uint column, KSGRD::SensorDisplay* display = 0 ); void collectHosts( TQStringList &list ); @@ -127,7 +127,7 @@ class WorkSheet : public TQWidget, public KSGRD::SensorBoard /** This two dimensional array stores the pointers to the sensor displays or if no sensor is present at a position a pointer to a dummy widget. - The size of the array corresponds to the size of the grid tqlayout. + The size of the array corresponds to the size of the grid layout. */ KSGRD::SensorDisplay*** mDisplayList; }; |