Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
71fc86f6
Commit
71fc86f6
authored
Jul 31, 2016
by
luyikei
Browse files
Timeline.cpp: Use QStringLiteral
parent
5e50c347
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Gui/timeline/Timeline.cpp
View file @
71fc86f6
...
...
@@ -38,9 +38,9 @@ Timeline::Timeline( MainWindow* parent )
{
m_container
->
setSizePolicy
(
QSizePolicy
::
Expanding
,
QSizePolicy
::
Expanding
);
m_container
->
setFocusPolicy
(
Qt
::
TabFocus
);
m_view
->
rootContext
()
->
setContextProperty
(
"timeline"
,
this
);
m_view
->
rootContext
()
->
setContextProperty
(
"mainwindow"
,
parent
);
m_view
->
rootContext
()
->
setContextProperty
(
"workflow"
,
Core
::
instance
()
->
workflow
()
);
m_view
->
rootContext
()
->
setContextProperty
(
QStringLiteral
(
"timeline"
)
,
this
);
m_view
->
rootContext
()
->
setContextProperty
(
QStringLiteral
(
"mainwindow"
)
,
parent
);
m_view
->
rootContext
()
->
setContextProperty
(
QStringLiteral
(
"workflow"
)
,
Core
::
instance
()
->
workflow
()
);
m_view
->
setSource
(
QUrl
(
QStringLiteral
(
"qrc:/QML/main.qml"
)
)
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment