summaryrefslogtreecommitdiff
path: root/library/categorymenu.cpp
Unidiff
Diffstat (limited to 'library/categorymenu.cpp') (more/less context) (show whitespace changes)
-rw-r--r--library/categorymenu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/categorymenu.cpp b/library/categorymenu.cpp
index 52a127c..e733107 100644
--- a/library/categorymenu.cpp
+++ b/library/categorymenu.cpp
@@ -16,25 +16,25 @@
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#include "categorymenu.h" 21#include "categorymenu.h"
22#include "backend/categories.h" 22#include "backend/categories.h"
23#include "categoryselect.h" 23#include "categoryselect.h"
24#include <qstring.h> 24#include <qstring.h>
25#include <qmap.h> 25#include <qmap.h>
26 26
27CategoryMenu::CategoryMenu( const QString &n, bool ig = TRUE, 27CategoryMenu::CategoryMenu( const QString &n, bool ig = TRUE,
28 QWidget *parent = 0, const char *name = 0 ) : 28 QWidget *parent, const char *name ) :
29 QPopupMenu(parent, name), 29 QPopupMenu(parent, name),
30 appName(n), 30 appName(n),
31 includeGlobal(ig) 31 includeGlobal(ig)
32{ 32{
33 currentMid = 1; 33 currentMid = 1;
34 reload(); 34 reload();
35 connect(this, SIGNAL(activated(int)), this, SLOT(mapMenuId(int))); 35 connect(this, SIGNAL(activated(int)), this, SLOT(mapMenuId(int)));
36} 36}
37 37
38CategoryMenu::~CategoryMenu( ) 38CategoryMenu::~CategoryMenu( )
39{ 39{
40} 40}