]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/column.h
Use the override specifier when overriding a virtual function
[libs/gltk.git] / source / column.h
index 75ee1d334fd4c10ec135910669c3f454f5a4ebb1..d82c8cad65a8f0d351a3cd0211ccc0fd548570f7 100644 (file)
@@ -2,17 +2,18 @@
 #define MSP_GLTK_COLUMN_H_
 
 #include "lineararrangement.h"
+#include "mspgltk_api.h"
 
 namespace Msp {
 namespace GLtk {
 
-class Column: public LinearArrangement
+class MSPGLTK_API Column: public LinearArrangement
 {
 public:
        Column(Layout &);
 
 private:
-       virtual void finish_widget(Widget &);
+       void finish_widget(Widget &) override;
 };
 
 } // namespace GLtk