This repository has been archived on 2025-06-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ObjGUI.old/gtk/OGHBox.m
2011-12-27 23:38:07 +01:00

16 lines
231 B
Objective-C

#import "OGHBox.h"
@implementation OGHBox
- init
{
self = [super init];
widget = gtk_hbox_new(FALSE, 0);
g_signal_connect(G_OBJECT(widget), "destroy", G_CALLBACK(og_destroy),
self);
[self retain];
return self;
}
@end