00001 #include "viewpopupaction.h"
00002
00003 ViewPopupAction::ViewPopupAction( const QString &text,
00004 const QString &menuText,
00005 int accel,
00006 QObject *parent,
00007 const char *name,
00008 bool toggle ) :
00009 QAction( text, menuText, accel, parent, name, toggle ) {
00010 connect( this,
00011 SIGNAL( activated() ),
00012 this,
00013 SLOT( actSelected() ) );
00014 }
00015