comparison widgets/ModelDataTableDialog.cpp @ 1051:c02c51ae5238 3.0-plus-imaf

Merge branches 3.0-integration and imaf_enc to 3.0-plus-imaf
author Chris Cannam
date Wed, 20 Apr 2016 12:06:28 +0100
parents 4a578a360011 97ea68f62c1f
children
comparison
equal deleted inserted replaced
1050:3691af49291c 1051:c02c51ae5238
49 toolbar = addToolBar(tr("Playback Toolbar")); 49 toolbar = addToolBar(tr("Playback Toolbar"));
50 m_playToolbar = toolbar; 50 m_playToolbar = toolbar;
51 toolbar = addToolBar(tr("Play Mode Toolbar")); 51 toolbar = addToolBar(tr("Play Mode Toolbar"));
52 52
53 IconLoader il; 53 IconLoader il;
54
55 QAction *action = new QAction(il.load("playfollow"), tr("Track Playback"), this); 54 QAction *action = new QAction(il.load("playfollow"), tr("Track Playback"), this);
56 action->setStatusTip(tr("Toggle tracking of playback position")); 55 action->setStatusTip(tr("Toggle tracking of playback position"));
57 action->setCheckable(true); 56 action->setCheckable(true);
58 action->setChecked(m_trackPlayback); 57 action->setChecked(m_trackPlayback);
59 connect(action, SIGNAL(triggered()), this, SLOT(togglePlayTracking())); 58 connect(action, SIGNAL(triggered()), this, SLOT(togglePlayTracking()));