From aef7ff78141443ea08b29bc2a88586bb90463005 Mon Sep 17 00:00:00 2001 From: jussi Date: Mon, 18 Feb 2019 17:14:23 +0200 Subject: [PATCH] remove duplicates --- mainwindow.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index a0b3fb8..b02ad4e 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -35,9 +35,9 @@ MainWindow::MainWindow(QWidget *parent) : types->queryGPUFreqOffset(currentGPUIndex); types->queryGPUMemClkOffset(currentGPUIndex); types->queryGPUVoltageOffset(currentGPUIndex); - types->queryGPUPowerLimit(currentGPUIndex); - types->queryGPUPowerLimitAvailability(currentGPUIndex); - types->queryGPUPowerLimitLimits(currentGPUIndex); + //types->queryGPUPowerLimit(currentGPUIndex); + //types->queryGPUPowerLimitAvailability(currentGPUIndex); + //types->queryGPUPowerLimitLimits(currentGPUIndex); types->queryGPUCurrentMaxClocks(currentGPUIndex); if (types->GPUList[currentGPUIndex].gputype == types->AMDGPU) { types->calculateUIProperties(currentGPUIndex); @@ -142,7 +142,7 @@ MainWindow::MainWindow(QWidget *parent) : connect(ui->voltageSpinBox, SIGNAL(valueChanged(int)), SLOT(resetTimer())); connect(ui->tabWidget, SIGNAL(currentChanged(int)), SLOT(tabHandler(int))); - connect(monitorUpdater, SIGNAL(timeout()), SLOT(updateMonitor())); + //connect(monitorUpdater, SIGNAL(timeout()), SLOT(updateMonitor())); } MainWindow::~MainWindow()