Menu

[554b75]: / src / gtk_cpp_workaround.h  Maximize  Restore  History

Download this file

40 lines (34 with data), 746 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#ifndef gtk_cpp_workaround_h
#define gtk_cpp_workaround_h
#ifdef __cplusplus
//proto is wrong, override here for C++
namespace
{
inline void gtk_table_attach (GtkTable *table,
GtkWidget *child,
guint left_attach,
guint right_attach,
guint top_attach,
guint bottom_attach,
//GtkAttachOptions xoptions,
//GtkAttachOptions yoptions,
guint xoptions, guint yoptions,
guint xpadding,
guint ypadding
)
{
gtk_table_attach(table,
child,
left_attach,
right_attach,
top_attach,
bottom_attach,
(GtkAttachOptions)xoptions,
(GtkAttachOptions)yoptions,
xpadding,
ypadding
);
};
}
#endif
#endif
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.