Skip to content

Commit

Permalink
remove unused initializer
Browse files Browse the repository at this point in the history
  • Loading branch information
f8ith committed Dec 5, 2024
2 parents acdd3be + c7b3fd4 commit 793f7a7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/qt_gui/game_list_frame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
#include "game_list_utils.h"

GameListFrame::GameListFrame(std::shared_ptr<GameInfoClass> game_info_get, std::shared_ptr<CompatibilityInfoClass> compat_info_get, QWidget* parent)
: QTableWidget(parent), m_game_info(game_info_get), m_compat_info(compat_info_get),
networkManager(new QNetworkAccessManager(this)) {
: QTableWidget(parent), m_game_info(game_info_get), m_compat_info(compat_info_get) {
icon_size = Config::getIconSize();
this->setShowGrid(false);
this->setEditTriggers(QAbstractItemView::NoEditTriggers);
Expand Down

0 comments on commit 793f7a7

Please sign in to comment.