mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-23 14:43:43 +00:00
Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
@@ -30,7 +30,8 @@ Spinner::Spinner()
|
||||
setPixmap(m_pixmaps.front());
|
||||
|
||||
m_timer = new QTimer(this /* parent */);
|
||||
connect(m_timer, &QTimer::timeout, [this]() {
|
||||
connect(m_timer, &QTimer::timeout, [this]()
|
||||
{
|
||||
m_progress = (m_progress + 1) % m_pixmaps.size();
|
||||
setPixmap(m_pixmaps[m_progress]);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user