Browse Source

Remove unfinished feedback widget

Neal Wilson 9 years ago
parent
commit
c0a23d6573
1 changed files with 0 additions and 15 deletions
  1. 0
    15
      src/helpmenu.w

+ 0
- 15
src/helpmenu.w View File

26
 		HelpMenu();
26
 		HelpMenu();
27
 	public slots:
27
 	public slots:
28
 		void displayAboutTypica();
28
 		void displayAboutTypica();
29
-		void displayFeedbackWizard();
30
 };
29
 };
31
 
30
 
32
 #endif
31
 #endif
36
 @(helpmenu.cpp@>=
35
 @(helpmenu.cpp@>=
37
 #include "helpmenu.h"
36
 #include "helpmenu.h"
38
 #include "abouttypica.h"
37
 #include "abouttypica.h"
39
-#include "feedback.h"
40
 
38
 
41
 @<Help menu implementation@>@;
39
 @<Help menu implementation@>@;
42
 
40
 
55
 	aboutTypicaAction->setObjectName("aboutTypicaAction");
53
 	aboutTypicaAction->setObjectName("aboutTypicaAction");
56
 	addAction(aboutTypicaAction);
54
 	addAction(aboutTypicaAction);
57
 	connect(aboutTypicaAction, SIGNAL(triggered()), this, SLOT(displayAboutTypica()));
55
 	connect(aboutTypicaAction, SIGNAL(triggered()), this, SLOT(displayAboutTypica()));
58
-	QAction *sendFeedbackAction = new QAction(tr("Send Feedback"), this);
59
-	sendFeedbackAction->setObjectName("sendFeedback");
60
-	addAction(sendFeedbackAction);
61
-	connect(sendFeedbackAction, SIGNAL(triggered()), this, SLOT(displayFeedbackWizard()));
62
 }
56
 }
63
 
57
 
64
 @ When "About Typica" is selected from the menu, we display an about box. This
58
 @ When "About Typica" is selected from the menu, we display an about box. This
71
 	aboutBox->show();
65
 	aboutBox->show();
72
 }
66
 }
73
 
67
 
74
-@ A feedback wizard is also available from the Help menu.
75
-
76
-@<Help menu implementation@>=
77
-void HelpMenu::displayFeedbackWizard()
78
-{
79
-	FeedbackWizard *window = new FeedbackWizard;
80
-	window->show();
81
-}
82
-

Loading…
Cancel
Save