1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge pull request #6109

iphydf (1):
      chore(interface): avoid gnu extensions in macros
This commit is contained in:
Anthony Bilinski 2020-05-13 00:16:05 -07:00
commit 8a9c89f239
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
2 changed files with 4 additions and 4 deletions

View File

@ -106,6 +106,6 @@ public:
virtual operator bool() const = 0;
signals:
DECLARE_SIGNAL(finishedPlaying);
DECLARE_SIGNAL(invalidated);
DECLARE_SIGNAL(finishedPlaying, void);
DECLARE_SIGNAL(invalidated, void);
};

View File

@ -48,8 +48,8 @@ public:
uint getSourceId() const;
void kill();
SIGNAL_IMPL(AlSink, finishedPlaying)
SIGNAL_IMPL(AlSink, invalidated)
SIGNAL_IMPL(AlSink, finishedPlaying, void)
SIGNAL_IMPL(AlSink, invalidated, void)
private:
OpenAL& audio;