Changeset 83579 in webkit


Ignore:
Timestamp:
Apr 12, 2011 5:00:33 AM (13 years ago)
Author:
alexis.menard@openbossa.org
Message:

2011-04-12 Alexis Menard <alexis.menard@openbossa.org>

Reviewed by Andreas Kling.

[Qt] Private Q_SLOTS void orientationChanged() can't be in qwebframe.h public header file.
https://bugs.webkit.org/show_bug.cgi?id=58251

Fix an issue with slot names after http://trac.webkit.org/changeset/83512.

  • Api/qwebframe.cpp: (QWebFrame::QWebFrame):
Location:
trunk/Source/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/qt/Api/qwebframe.cpp

    r83512 r83579  
    536536    }
    537537#if ENABLE(ORIENTATION_EVENTS) && ENABLE(DEVICE_ORIENTATION)
    538     connect(&d->m_orientation, SIGNAL(readingChanged()), this, SLOT(orientationChanged()));
     538    connect(&d->m_orientation, SIGNAL(readingChanged()), this, SLOT(_q_orientationChanged()));
    539539    d->m_orientation.start();
    540540#endif
     
    548548    d->init(this, frameData);
    549549#if ENABLE(ORIENTATION_EVENTS) && ENABLE(DEVICE_ORIENTATION)
    550     connect(&d->m_orientation, SIGNAL(readingChanged()), this, SLOT(orientationChanged()));
     550    connect(&d->m_orientation, SIGNAL(readingChanged()), this, SLOT(_q_orientationChanged()));
    551551    d->m_orientation.start();
    552552#endif
  • trunk/Source/WebKit/qt/ChangeLog

    r83512 r83579  
     12011-04-12  Alexis Menard  <alexis.menard@openbossa.org>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [Qt] Private Q_SLOTS void orientationChanged() can't be in qwebframe.h public header file.
     6        https://bugs.webkit.org/show_bug.cgi?id=58251
     7
     8        Fix an issue with slot names after http://trac.webkit.org/changeset/83512.
     9
     10        * Api/qwebframe.cpp:
     11        (QWebFrame::QWebFrame):
     12
    1132011-04-11  Alexis Menard  <alexis.menard@openbossa.org>
    214
Note: See TracChangeset for help on using the changeset viewer.