diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-11-15 15:33:01 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-11-15 15:33:01 -0600 |
commit | 64f3533baa6463879500569f1b539864131451ee (patch) | |
tree | 49de7148419bd35de63e3948b641e6675b3d4302 /ksysguard/gui/SensorDisplayLib/ProcessList.h | |
parent | a37d3e5ac533dff3c7e8a43c671c4dfc42b99e69 (diff) | |
download | tdebase-64f3533baa6463879500569f1b539864131451ee.tar.gz tdebase-64f3533baa6463879500569f1b539864131451ee.zip |
Fix keyboard multi-select failure in ksysguard
Diffstat (limited to 'ksysguard/gui/SensorDisplayLib/ProcessList.h')
-rw-r--r-- | ksysguard/gui/SensorDisplayLib/ProcessList.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ksysguard/gui/SensorDisplayLib/ProcessList.h b/ksysguard/gui/SensorDisplayLib/ProcessList.h index 370fe23fd..fc668cf15 100644 --- a/ksysguard/gui/SensorDisplayLib/ProcessList.h +++ b/ksysguard/gui/SensorDisplayLib/ProcessList.h @@ -170,6 +170,10 @@ signals: void listModified(bool); +protected: + void keyPressEvent(TQKeyEvent *e); + void keyReleaseEvent(TQKeyEvent *e); + private: // items of table header RMB popup menu enum @@ -244,6 +248,8 @@ private: bool killSupported; bool treeViewEnabled; bool openAll; + bool ctrlKeyDown; + bool shiftKeyDown; /* The following lists are primarily used to store table specs between * load() and the actual table creation in addColumn(). */ |