Changeset 52621 in webkit


Ignore:
Timestamp:
Dec 29, 2009 7:32:56 AM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-29 Laszlo Gombos <Laszlo Gombos>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Fix warnings in MediaPlayerPrivatePhonon.cpp
https://bugs.webkit.org/show_bug.cgi?id=33019

No new tests as there is no new functionality.

  • platform/graphics/qt/MediaPlayerPrivatePhonon.cpp: (WebCore::MediaPlayerPrivate::totalTimeChanged):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r52620 r52621  
     12009-12-29  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Fix warnings in MediaPlayerPrivatePhonon.cpp
     6        https://bugs.webkit.org/show_bug.cgi?id=33019
     7
     8        No new tests as there is no new functionality.
     9
     10        * platform/graphics/qt/MediaPlayerPrivatePhonon.cpp:
     11        (WebCore::MediaPlayerPrivate::totalTimeChanged):
     12
    1132009-12-29  Kent Tamura  <tkent@chromium.org>
    214
  • trunk/WebCore/platform/graphics/qt/MediaPlayerPrivatePhonon.cpp

    r51184 r52621  
    4747#define LOG_MEDIAOBJECT() (LOG(Media, "%s", debugMediaObject(this, *m_mediaObject).constData()))
    4848
     49#if !LOG_DISABLED
    4950static QByteArray debugMediaObject(WebCore::MediaPlayerPrivate* mediaPlayer, const MediaObject& mediaObject)
    5051{
     
    7475    return byteArray;
    7576}
     77#endif
    7678
    7779using namespace WTF;
     
    503505void MediaPlayerPrivate::totalTimeChanged(qint64 totalTime)
    504506{
    505     LOG(Media, "MediaPlayerPrivatePhonon::totalTimeChanged(%d)", totalTime);
     507    LOG(Media, "MediaPlayerPrivatePhonon::totalTimeChanged(%lld)", totalTime);
    506508    LOG_MEDIAOBJECT();
    507509}
Note: See TracChangeset for help on using the changeset viewer.