summaryrefslogtreecommitdiff
path: root/dgl/Window.hpp
diff options
context:
space:
mode:
authorfalkTX <falktx@gmail.com>2014-05-14 14:43:25 +0100
committerfalkTX <falktx@gmail.com>2014-05-14 14:43:25 +0100
commite1855f6b80bed5f9e980482742d0b9f096da4a67 (patch)
treea9f7745c5c38862fe50a70664788d10eb9eb4025 /dgl/Window.hpp
parent5b6c9c06591b0d8a7d012ca40c6dd8d2436c1ee8 (diff)
Add Knob and Slider get/setId; noexcept work
Diffstat (limited to 'dgl/Window.hpp')
-rw-r--r--dgl/Window.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/dgl/Window.hpp b/dgl/Window.hpp
index ec62b5cf..714fdbf5 100644
--- a/dgl/Window.hpp
+++ b/dgl/Window.hpp
@@ -40,7 +40,7 @@ public:
void exec(bool lockWait = false);
void focus();
- void repaint();
+ void repaint() noexcept;
bool isVisible() const noexcept;
void setVisible(bool yesNo);
@@ -58,9 +58,9 @@ public:
void setTransientWinId(intptr_t winId);
App& getApp() const noexcept;
- uint getEventTimestamp() const;
- int getModifiers() const;
- intptr_t getWindowId() const;
+ uint getEventTimestamp() const noexcept;
+ int getModifiers() const noexcept;
+ intptr_t getWindowId() const noexcept;
void addIdleCallback(IdleCallback* const callback);
void removeIdleCallback(IdleCallback* const callback);