Remove info frame from DeviceViewContainer

Was broken and caused yellow background on windows
This commit is contained in:
Jonas Kvinge
2018-08-09 22:30:18 +02:00
parent 08fcedd925
commit f5ba8da3c7
3 changed files with 5 additions and 98 deletions

View File

@@ -30,11 +30,8 @@
#include <QString>
#include <QShowEvent>
namespace Ui {
class DeviceViewContainer;
}
class DeviceView;
class Ui_DeviceViewContainer;
class DeviceViewContainer : public QWidget {
Q_OBJECT
@@ -43,14 +40,12 @@ class DeviceViewContainer : public QWidget {
explicit DeviceViewContainer(QWidget *parent = nullptr);
~DeviceViewContainer();
DeviceView* view() const;
DeviceView *view() const;
protected:
void showEvent(QShowEvent *);
private:
Ui::DeviceViewContainer *ui_;
bool loaded_icons_;
Ui_DeviceViewContainer *ui_;
};
#endif // DEVICEVIEWCONTAINER_H