SVN commit 726207 by dimsuz: set icon to 'Show Moves History' action M +1 -1 mainwindow.cpp --- trunk/KDE/kdegames/kreversi/mainwindow.cpp #726206:726207 @@ -159,7 +159,7 @@ connect( m_coloredChipsAct, SIGNAL(triggered(bool)), SLOT(slotUseColoredChips(bool)) ); // NOTE: read/write this from/to config file? Or not necessary? - KToggleAction *showMovesAct = new KToggleAction( i18n("Show Move History"), this ); + KToggleAction *showMovesAct = new KToggleAction( KIcon("history"), i18n("Show Move History"), this ); actionCollection()->addAction("show_moves", showMovesAct); connect( showMovesAct, SIGNAL(triggered(bool)), SLOT(slotShowMovesHistory(bool)) );