ImageViewer: Rename QSWidget => ImageViewer::ViewWidget

This commit is contained in:
Andreas Kling 2021-05-14 18:37:08 +02:00
commit 3168a4afe8
Notes: sideshowbarker 2024-07-18 18:09:22 +09:00
5 changed files with 44 additions and 34 deletions

View file

@ -51,7 +51,7 @@ void ImageWidget::set_auto_resize(bool value)
set_fixed_size(m_bitmap->size());
}
// Same as QSWidget::animate(), you probably want to keep any changes in sync
// Same as ImageViewer::ViewWidget::animate(), you probably want to keep any changes in sync
void ImageWidget::animate()
{
m_current_frame_index = (m_current_frame_index + 1) % m_image_decoder->frame_count();