00001 #include "qsegraphradiobutton.h" 00002 #include "qsegraphcontroller.h" 00003 00004 QseGraphRadioButton::QseGraphRadioButton(QseGraphController *ctrl, int row, int col) 00005 : QRadioButton(NULL), 00006 m_Controller(ctrl), 00007 m_Row(row), 00008 m_Col(col) 00009 { 00010 connect(this, SIGNAL(clicked()), ctrl, SLOT(columnsSelectionChanged())); 00011 }
1.5.6