mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Get rid of some more warnings
This commit is contained in:
parent
ba5d6e5c4b
commit
5dbdb6424c
|
@ -9,7 +9,7 @@ namespace chatterino {
|
||||||
|
|
||||||
class AttachedWindow : public QWidget
|
class AttachedWindow : public QWidget
|
||||||
{
|
{
|
||||||
AttachedWindow(void *target_, int asdf);
|
AttachedWindow(void *_target, int _yOffset);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
struct GetArgs {
|
struct GetArgs {
|
||||||
|
@ -37,8 +37,10 @@ private:
|
||||||
int currentYOffset_;
|
int currentYOffset_;
|
||||||
int width_ = 360;
|
int width_ = 360;
|
||||||
int height_ = -1;
|
int height_ = -1;
|
||||||
|
#ifdef USEWINSDK
|
||||||
bool validProcessName_ = false;
|
bool validProcessName_ = false;
|
||||||
bool attached_ = false;
|
bool attached_ = false;
|
||||||
|
#endif
|
||||||
QTimer timer_;
|
QTimer timer_;
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
|
|
Loading…
Reference in a new issue