Files @ 0a2afa6ed583
Branch filter:

Location: tempo-plotter/customcheckablebutton.cpp - annotation

Hasan Yavuz ÖZDERYA
implemented port data bits selection
#include "customcheckablebutton.h"

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

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