File: videosettings.cpp

package info (click to toggle)
openterface-qt 0.1.0%2Bds-1
  • links: PTS
  • area: main
  • in suites: experimental
  • size: 1,444 kB
  • sloc: cpp: 9,552; sh: 127; python: 57; ansic: 4; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 327 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "videosettings.h"
#include "ui_videosettings.h"

VideoSettings::VideoSettings(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::VideoSettings)
{
    ui->setupUi(this);
    // Remove any FPS slider setup or connections
}

VideoSettings::~VideoSettings()
{
    delete ui;
}

// Remove any FPS slider related methods