mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-06-17 22:23:31 +00:00
Change errorCode to an int type
This commit is contained in:
@@ -41,7 +41,7 @@ public:
|
||||
signals:
|
||||
void stageStarting(QString stage);
|
||||
|
||||
void stageFailed(QString stage, long errorCode);
|
||||
void stageFailed(QString stage, int errorCode);
|
||||
|
||||
void connectionStarted();
|
||||
|
||||
@@ -93,10 +93,10 @@ private:
|
||||
void clStageStarting(int stage);
|
||||
|
||||
static
|
||||
void clStageFailed(int stage, long errorCode);
|
||||
void clStageFailed(int stage, int errorCode);
|
||||
|
||||
static
|
||||
void clConnectionTerminated(long errorCode);
|
||||
void clConnectionTerminated(int errorCode);
|
||||
|
||||
static
|
||||
void clLogMessage(const char* format, ...);
|
||||
|
||||
Reference in New Issue
Block a user