Skip to content

Commit

Permalink
[GTK] MediaControlsGtk: fix warning in constructor due to incorrect o…
Browse files Browse the repository at this point in the history
…rder of attributes

https://bugs.webkit.org/show_bug.cgi?id=120703

Reviewed by Carlos Garcia Campos.

Fix member initialization so it matches their declaration [-Wreorder].

* html/shadow/MediaControlsGtk.cpp:
(WebCore::MediaControlsGtk::MediaControlsGtk):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@155102 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
[email protected] committed Sep 5, 2013
1 parent 01c8755 commit 7810564
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions Source/WebCore/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
2013-09-05 Alberto Garcia <[email protected]>

[GTK] MediaControlsGtk: fix warning in constructor due to incorrect order of attributes
https://bugs.webkit.org/show_bug.cgi?id=120703

Reviewed by Carlos Garcia Campos.

Fix member initialization so it matches their declaration [-Wreorder].

* html/shadow/MediaControlsGtk.cpp:
(WebCore::MediaControlsGtk::MediaControlsGtk):

2013-09-04 Dirk Schulze <[email protected]>

Support interpolation between cross-fade() images
Expand Down
2 changes: 1 addition & 1 deletion Source/WebCore/html/shadow/MediaControlsGtk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ MediaControlsGtk::MediaControlsGtk(Document* document)
: MediaControls(document)
, m_durationDisplay(0)
, m_enclosure(0)
, m_eventListener(0)
, m_closedCaptionsTrackList(0)
, m_closedCaptionsContainer(0)
, m_eventListener(0)
{
}

Expand Down

0 comments on commit 7810564

Please sign in to comment.