By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 863
Collapse All | Expand All

(-)a/kuickshow/src/imagewindow.cpp (-2 / +2 lines)
Lines 182-191 void ImageWindow::setupActions() Link Here
182
                 TQT_TQOBJECT(this), TQT_SLOT( rotate270() ),
182
                 TQT_TQOBJECT(this), TQT_SLOT( rotate270() ),
183
                 m_actions, "rotate270" );
183
                 m_actions, "rotate270" );
184
184
185
    new KAction( i18n("FlipQt::Horizontally"), Key_Asterisk,
185
    new KAction( i18n("Flip Horizontally"), Key_Asterisk,
186
                 TQT_TQOBJECT(this), TQT_SLOT( flipHoriz() ),
186
                 TQT_TQOBJECT(this), TQT_SLOT( flipHoriz() ),
187
                 m_actions, "flip_horicontally" );
187
                 m_actions, "flip_horicontally" );
188
    new KAction( i18n("FlipQt::Vertically"), Key_Slash,
188
    new KAction( i18n("Flip Vertically"), Key_Slash,
189
                 TQT_TQOBJECT(this), TQT_SLOT( flipVert() ),
189
                 TQT_TQOBJECT(this), TQT_SLOT( flipVert() ),
190
                 m_actions, "flip_vertically" );
190
                 m_actions, "flip_vertically" );
191
191

Return to bug 863