comparison main/MainWindow.h @ 1770:893f556cd5c9

Untabify
author Chris Cannam
date Thu, 01 Mar 2018 18:02:33 +0000
parents 6b2e781b0154
children 2f828631c9be
comparison
equal deleted inserted replaced
1769:0698743f52a4 1770:893f556cd5c9
234 Surveyer *m_surveyer; 234 Surveyer *m_surveyer;
235 VersionTester *m_versionTester; 235 VersionTester *m_versionTester;
236 QString m_newerVersionIs; 236 QString m_newerVersionIs;
237 237
238 struct LayerConfiguration { 238 struct LayerConfiguration {
239 LayerConfiguration(LayerFactory::LayerType _layer 239 LayerConfiguration(LayerFactory::LayerType _layer
240 = LayerFactory::TimeRuler, 240 = LayerFactory::TimeRuler,
241 Model *_source = 0, 241 Model *_source = 0,
242 int _channel = -1) : 242 int _channel = -1) :
243 layer(_layer), sourceModel(_source), channel(_channel) { } 243 layer(_layer), sourceModel(_source), channel(_channel) { }
244 LayerFactory::LayerType layer; 244 LayerFactory::LayerType layer;
245 Model *sourceModel; 245 Model *sourceModel;
246 int channel; 246 int channel;
247 }; 247 };
248 248
249 typedef std::map<QAction *, LayerConfiguration> PaneActionMap; 249 typedef std::map<QAction *, LayerConfiguration> PaneActionMap;
250 PaneActionMap m_paneActions; 250 PaneActionMap m_paneActions;
251 251