Minor doc fix - show -> hide in QWindow::hideEvent()

Change-Id: I91c5b7f7b688c4f99c6a364692fd96603a38c9bc
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
Julian de Bhal 2012-03-30 10:11:54 +10:00 committed by Qt by Nokia
parent 0991eae048
commit 5071bbf491

View File

@ -1383,7 +1383,7 @@ void QWindow::resizeEvent(QResizeEvent *ev)
/*!
Override this to handle show events.
The show event is called when the window becomes visible in the windowing system.
This function is called when the window becomes visible in the windowing system.
*/
void QWindow::showEvent(QShowEvent *ev)
{
@ -1391,9 +1391,9 @@ void QWindow::showEvent(QShowEvent *ev)
}
/*!
Override this to handle show events.
Override this to handle hide events.
The show event is called when the window becomes hidden in the windowing system.
This function is called when the window becomes hidden in the windowing system.
*/
void QWindow::hideEvent(QHideEvent *ev)
{