mirror of
https://github.com/Lurkki14/tuxclocker.git
synced 2024-11-24 17:20:17 -06:00
11 lines
166 B
C++
11 lines
166 B
C++
#include "plotwidget.h"
|
|
|
|
PlotWidget::PlotWidget(QWidget *parent) : QWidget(parent)
|
|
{
|
|
|
|
}
|
|
void PlotWidget::leaveEvent(QEvent *event)
|
|
{
|
|
emit leftPlot();
|
|
}
|