summaryrefslogtreecommitdiffstats
path: root/tdeui/kdialog.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-16 02:08:39 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-16 02:08:39 -0500
commitbae793079f00cde6d857b55ef9c2d98ec6e091e6 (patch)
tree0e1f161f9095487ee0cb930d3d208c1267515006 /tdeui/kdialog.h
parentefda5c30fc737a49920900ace57a6bfffb9be27b (diff)
downloadtdelibs-bae793079f00cde6d857b55ef9c2d98ec6e091e6.tar.gz
tdelibs-bae793079f00cde6d857b55ef9c2d98ec6e091e6.zip
Fix network-manager backend crash on certain systems when network-manager is not available
Add ability to show buttons in KSMModalDialog
Diffstat (limited to 'tdeui/kdialog.h')
-rw-r--r--tdeui/kdialog.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/tdeui/kdialog.h b/tdeui/kdialog.h
index fff80a10c..dd1cc3908 100644
--- a/tdeui/kdialog.h
+++ b/tdeui/kdialog.h
@@ -234,6 +234,8 @@ public:
* @author Timothy Pearson <kb9vqf@pearsoncomputing.net>
*/
class TQLabel;
+class TQPushButton;
+class TQHBoxLayout;
class TDEUI_EXPORT KSMModalDialog : public TQWidget
{
Q_OBJECT
@@ -250,6 +252,12 @@ protected slots:
void keepMeOnTop();
void closeEvent(TQCloseEvent *e);
+protected:
+ TQPushButton* m_button1;
+ TQPushButton* m_button2;
+ TQPushButton* m_button3;
+ TQHBoxLayout* m_buttonbox;
+
private:
TQTimer* m_keepOnTopTimer;
TQLabel* m_statusLabel;