fix ambiguous variable name forward

Este commit está contenido en:
Chris Cromer 2019-05-01 17:55:37 -04:00
padre f5f3ee3155
commit e0b26bfb45
Firmado por: cromer
ID de clave GPG: 39CC813FF3C8708A
Se han modificado 2 ficheros con 5 adiciones y 5 borrados

Ver fichero

@ -1,5 +1,5 @@
/* XPM */
static const char *forward[] = {
static const char *forward_icon[] = {
/* columns rows colors chars-per-pixel */
"16 16 5 1",
" c black",

Ver fichero

@ -58,7 +58,7 @@ HelpWindow::HelpWindow( const QString& home_, const QString& _path, QWidget* par
Q3StyleSheetItem* style;
// Modify the application-wide default style sheet to handle
// some extra HTML gracefully.
//
@ -110,7 +110,7 @@ HelpWindow::HelpWindow( const QString& home_, const QString& _path, QWidget* par
backwardId = go->insertItem( QPixmap(back),
"&Backward", browser, SLOT( backward() ),
Qt::ALT | Qt::Key_Left );
forwardId = go->insertItem( QPixmap(forward),
forwardId = go->insertItem( QPixmap(forward_icon),
"&Forward", browser, SLOT( forward() ),
Qt::ALT | Qt::Key_Right );
go->insertItem( QPixmap(home), "&Home", browser, SLOT( home() ) );
@ -152,7 +152,7 @@ HelpWindow::HelpWindow( const QString& home_, const QString& _path, QWidget* par
button = new QToolButton( QPixmap(back), "Backward", "", browser, SLOT(backward()), toolbar );
connect( browser, SIGNAL( backwardAvailable(bool) ), button, SLOT( setEnabled(bool) ) );
button->setEnabled( FALSE );
button = new QToolButton( QPixmap(forward), "Forward", "", browser, SLOT(forward()), toolbar );
button = new QToolButton( QPixmap(forward_icon), "Forward", "", browser, SLOT(forward()), toolbar );
connect( browser, SIGNAL( forwardAvailable(bool) ), button, SLOT( setEnabled(bool) ) );
button->setEnabled( FALSE );
button = new QToolButton( QPixmap(home), "Home", "", browser, SLOT(home()), toolbar );
@ -365,7 +365,7 @@ void HelpWindow::hideEvent( QHideEvent * )
//*********************************************
void HelpWindow::showEvent( QShowEvent * )
{
if(window_list && window_list->isVisible())window_list->draw();
}