27 lines
669 B
Diff
27 lines
669 B
Diff
|
|
From 4e7fe2f2fc02cc008f67d80ef3cd9b41a8f17129 Mon Sep 17 00:00:00 2001
|
||
|
|
From: Egmont Koblinger <egmont@gmail.com>
|
||
|
|
Date: Thu, 27 Sep 2018 21:25:50 +0200
|
||
|
|
Subject: [PATCH] widget: Add missing exception specification
|
||
|
|
|
||
|
|
This fixes compiling with clang.
|
||
|
|
---
|
||
|
|
src/widget.cc | 2 +-
|
||
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/src/widget.cc b/src/widget.cc
|
||
|
|
index 0f2e509e6c0c..deaf789de6e2 100644
|
||
|
|
--- a/src/widget.cc
|
||
|
|
+++ b/src/widget.cc
|
||
|
|
@@ -327,7 +327,7 @@ Widget::size_allocate(GtkAllocation* allocation) noexcept
|
||
|
|
}
|
||
|
|
|
||
|
|
void
|
||
|
|
-Widget::unmap()
|
||
|
|
+Widget::unmap() noexcept
|
||
|
|
{
|
||
|
|
if (m_event_window)
|
||
|
|
gdk_window_hide(m_event_window);
|
||
|
|
--
|
||
|
|
2.14.4
|
||
|
|
|