1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:17:35 +00:00

ImageViewer: Rename QSWidget => ImageViewer::ViewWidget

This commit is contained in:
Andreas Kling 2021-05-14 18:37:08 +02:00
parent 58d73ea36c
commit 3168a4afe8
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();