Files @ 71f772af835d
Branch filter:

Location: tempo-plotter/customcheckablebutton.cpp - annotation

Hasan Yavuz ÖZDERYA
implemented stop bits and flow control selection buttons
#include "customcheckablebutton.h"

CustomCheckableButton::CustomCheckableButton(QWidget *parent) :
    QPushButton(parent)
{
    this->setCheckable(true);
}

void CustomCheckableButton::nextCheckState()
{
    /* Do nothing! Check state will be altered by parent. */
}