Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/moduls/ui/QTStarter/tuimod.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ void StApp::callQtModule( )
}
}

bool StApp::updLookFeel( )
void StApp::updLookFeel( )
{
QStyle *appStl = QStyleFactory::create(mod->style().c_str());
if(appStl) QApplication::setStyle(appStl);
Expand Down
2 changes: 1 addition & 1 deletion src/moduls/ui/QTStarter/tuimod.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class StApp : public QApplication
void createTray( );
bool callQtModule( const string &nm );

bool updLookFeel( );
void updLookFeel( );

bool notify( QObject *receiver, QEvent *event );
void saveState( QSessionManager &manager );
Expand Down