summaryrefslogtreecommitdiffstats
path: root/src/library/dlganalysis.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/dlganalysis.cpp')
-rw-r--r--src/library/dlganalysis.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/library/dlganalysis.cpp b/src/library/dlganalysis.cpp
index 52e27740a3..4ff4751be8 100644
--- a/src/library/dlganalysis.cpp
+++ b/src/library/dlganalysis.cpp
@@ -8,10 +8,10 @@
#include "library/dlganalysis.h"
#include "util/assert.h"
-DlgAnalysis::DlgAnalysis(QWidget* parent,
+DlgAnalysis::DlgAnalysis(QWidget* pLibrary,
UserSettingsPointer pConfig,
TrackCollection* pTrackCollection)
- : QWidget(parent),
+ : QWidget(pLibrary),
m_pConfig(pConfig),
m_pTrackCollection(pTrackCollection),
m_bAnalysisActive(false),
@@ -62,6 +62,13 @@ DlgAnalysis::DlgAnalysis(QWidget* parent,
SIGNAL(selectionChanged(const QItemSelection &, const QItemSelection&)),
this,
SLOT(tableSelectionChanged(const QItemSelection &, const QItemSelection&)));
+
+ connect(pLibrary, SIGNAL(setTrackTableFont(QFont)),
+ m_pAnalysisLibraryTableView, SLOT(setTrackTableFont(QFont)));
+ connect(pLibrary, SIGNAL(setTrackTableRowHeight(int)),
+ m_pAnalysisLibraryTableView, SLOT(setTrackTableRowHeight(int)));
+ connect(pLibrary, SIGNAL(setSelectedClick(bool)),
+ m_pAnalysisLibraryTableView, SLOT(setSelectedClick(bool)));
}
DlgAnalysis::~DlgAnalysis() {