Cleanup Launcher config comments, unecessary changes, etc.

This commit is contained in:
Matthew Territo
2017-05-19 12:08:55 -06:00
parent 5086d1e5ea
commit ce83666ec0
3 changed files with 2 additions and 45 deletions
+2 -5
View File
@@ -23,8 +23,6 @@
****************************************************************************************/
#include <QApplication>
#include <QCommandLineParser>
#include <QFile>
#include "mainwindow.h"
@@ -165,12 +163,11 @@ QScrollBar::add-page, QScrollBar::sub-page {
}
)style";
int main(int argc, char** argv) {
QApplication app(argc, argv);
app.setStyleSheet(style);
MainWindow window;
MainWindow window;
window.show();
return app.exec();
-5
View File
@@ -233,11 +233,6 @@ void MainWindow::configureLogging() {
}
#endif // GHOUL_LOGGING_ENABLE_TRACE
// printf("%d", _optionParser->value("d").toInt());
// ghoul::logging::LogManager::initialize(static_cast<ghoul::logging::LogLevel>(_optionParser->value("d").toInt()));
// LogMgr.addLog( std::make_unique< ghoul::logging::ConsoleLog >() );
}
void MainWindow::initialize() {
-35
View File
@@ -82,40 +82,5 @@ private:
QCommandLineParser* _optionParser;
};
//class MainWindow : public QWidget {
//Q_OBJECT
//public:
// MainWindow();
// ~MainWindow();
//
// std::string nextTarget() const;
//
//public slots:
// void sendScript(QString script);
//
//private slots:
// void onConnect(QString host, QString port);
// void onDisconnect();
//
// void onSocketConnected();
// void onSocketDisconnected();
//
// void readTcpData();
// void handleStatusMessage(QByteArray data);
// void handlePlaybook(QByteArray data);
//
// void fullyConnected();
//
//private:
// ConfigurationWidget* _configurationWidget;
// ControlWidget* _timeControlWidget;
// InformationWidget* _informationWidget;
// TimelineWidget* _timelineWidget;
//
// QTcpSocket* _socket;
//
// bool _hasHongKangTimeline = false;
// bool _hasLabelTimeline = false;
//};
#endif // __OPENSPACE_APP_LAUNCHER___MAINWINDOW___H__