region: Add stubs for language tab code
This commit is contained in:
parent
9229ab875e
commit
dbc6f5a6b9
4 changed files with 13 additions and 3 deletions
|
@ -7,7 +7,8 @@ INCLUDES = \
|
|||
$(LIBGNOMEKBD_CFLAGS) \
|
||||
-DGNOMELOCALEDIR="\"$(datadir)/locale\"" \
|
||||
-DGNOMECC_DATA_DIR="\"$(pkgdatadir)\"" \
|
||||
-DGNOMECC_UI_DIR="\"$(uidir)\""
|
||||
-DGNOMECC_UI_DIR="\"$(uidir)\"" \
|
||||
-I$(srcdir)/../common/ \
|
||||
$(NULL)
|
||||
|
||||
ccpanelsdir = $(PANELS_DIR)
|
||||
|
@ -27,7 +28,7 @@ libregion_la_SOURCES = \
|
|||
gnome-region-panel-xkbpv.c \
|
||||
gnome-region-panel-xkb.h
|
||||
|
||||
libregion_la_LIBADD = $(PANEL_LIBS) $(LIBGNOMEKBD_LIBS) $(GNOMECC_CAPPLETS_LIBS)
|
||||
libregion_la_LIBADD = $(PANEL_LIBS) $(LIBGNOMEKBD_LIBS) $(GNOMECC_CAPPLETS_LIBS) $(builddir)/../common/liblanguage.la
|
||||
|
||||
libregion_la_LDFLAGS = $(PANEL_LDFLAGS)
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#include "gnome-region-panel-xkb.h"
|
||||
#include "gnome-region-panel-lang.h"
|
||||
|
||||
#define WID(s) GTK_WIDGET (gtk_builder_get_object (dialog, s))
|
||||
|
||||
|
@ -129,6 +130,7 @@ cc_region_panel_init (CcRegionPanel * self)
|
|||
|
||||
setup_images (priv->builder);
|
||||
setup_xkb_tabs (priv->builder);
|
||||
setup_language (priv->builder);
|
||||
|
||||
prefs_widget = (GtkWidget *) gtk_builder_get_object (priv->builder,
|
||||
"region_notebook");
|
||||
|
|
|
@ -27,5 +27,10 @@
|
|||
#include <glib/gi18n.h>
|
||||
|
||||
#include "gnome-region-panel-lang.h"
|
||||
#include "cc-common-language.h"
|
||||
|
||||
|
||||
void
|
||||
setup_language (GtkBuilder *builder)
|
||||
{
|
||||
g_message ("TODO");
|
||||
}
|
||||
|
|
|
@ -26,5 +26,7 @@
|
|||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
void setup_language (GtkBuilder *builder);
|
||||
|
||||
G_END_DECLS
|
||||
#endif /* __GNOME_KEYBOARD_PROPERTY_LANG_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue