implement server config remove button

This commit is contained in:
Yannik Schmidt
2020-09-07 19:25:01 +02:00
parent 29be79f278
commit 1839b4b28e
5 changed files with 44 additions and 4 deletions

17
pushbuttonwithposition.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef PUSHBUTTONWITHPOSITION_H
#define PUSHBUTTONWITHPOSITION_H
#include <QPushButton>
class PushButtonWithPosition : public QPushButton
{
public:
PushButtonWithPosition(int row, QString text) : QPushButton(text){
this->row = row;
}
int row;
};
#endif // PUSHBUTTONWITHPOSITION_H