This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
DPF
mirror of
https://github.com/DISTRHO/DPF
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
Misc
gh-pages
falkTX
11 years ago
parent
8137eacc16
commit
59315e902f
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
dgl/App.hpp
+1
-1
dgl/src/App.cpp
+ 1
- 1
dgl/App.hpp
View File
@@ -41,7 +41,7 @@ public:
void idle();
void exec();
void quit();
bool isQuiting() const;
bool isQuiting() const
noexcept
;
void addIdleCallback(IdleCallback* const callback);
void removeIdleCallback(IdleCallback* const callback);
+ 1
- 1
dgl/src/App.cpp
View File
@@ -87,7 +87,7 @@ void App::quit()
}
}
bool App::isQuiting() const
bool App::isQuiting() const
noexcept
{
return !pData->doLoop;
}
Write
Preview
Loading…
Cancel
Save