Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compile speedup #1870

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,282 changes: 642 additions & 640 deletions Client/qtTeamTalk/mainwindow.cpp

Large diffs are not rendered by default.

19 changes: 13 additions & 6 deletions Client/qtTeamTalk/mainwindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,17 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include "ui_mainwindow.h"

#include <QLabel>
#include <QMainWindow>
#include <QMap>
#include <QSet>
#include <QQueue>
#include <QSystemTrayIcon>
#include <QNetworkAccessManager>
#include <QProgressBar>
#include <QQueue>
#include <QSet>
#include <QSortFilterProxyModel>
#include <QSystemTrayIcon>

#include <memory>

#include "common.h"
#include "textmessagecontainer.h"
Expand Down Expand Up @@ -90,6 +93,10 @@ enum
TAB_COUNT
};

QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE

class MainWindow : public QMainWindow
{
Q_OBJECT
Expand Down Expand Up @@ -124,7 +131,7 @@ class MainWindow : public QMainWindow
#endif
#endif
private:
Ui::MainWindow ui;
std::unique_ptr<Ui::MainWindow> ui;
class FilesModel* m_filesmodel;
QSortFilterProxyModel* m_proxyFilesModel;
QSystemTrayIcon* m_sysicon;
Expand Down
Loading