Skip to content

Commit

Permalink
Fix a warning in Core::sleep()
Browse files Browse the repository at this point in the history
  • Loading branch information
jleclanche committed Oct 31, 2014
1 parent 5949d9c commit ad31b34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Core::~Core()
conf->killInstance();
}

void Core::sleep(quint8 msec)
void Core::sleep(int msec)
{
QMutex mutex;
mutex.lock();
Expand Down
2 changes: 1 addition & 1 deletion src/core/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public Q_SLOTS:
static Core* instance();
~Core();

void sleep(quint8 msec = 350);
void sleep(int msec = 350);
static QString getVersionPrintable();

QPixmap* getPixmap();
Expand Down

0 comments on commit ad31b34

Please sign in to comment.