custombarset.cpp
8 lines
| 217 B
| text/x-c
|
CppLexer
sauimone
|
r276 | #include "custombarset.h" | ||
CustomBarSet::CustomBarSet(QObject *parent) : | ||||
QBarSet(parent) | ||||
{ | ||||
// Using signal to signal connection here. | ||||
connect(this,SIGNAL(clicked()),this,SIGNAL(toggleFloatingValues())); | ||||
} | ||||