network: Remove unused variable
This commit is contained in:
parent
eb7372d83b
commit
c7f7022ed3
2 changed files with 0 additions and 12 deletions
|
@ -71,14 +71,6 @@ ce_page_get_title (CEPage *self)
|
||||||
return CE_PAGE_GET_CLASS (self)->get_title (self);
|
return CE_PAGE_GET_CLASS (self)->get_title (self);
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
|
||||||
ce_page_get_initialized (CEPage *self)
|
|
||||||
{
|
|
||||||
g_return_val_if_fail (CE_IS_PAGE (self), FALSE);
|
|
||||||
|
|
||||||
return self->initialized;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
ce_page_changed (CEPage *self)
|
ce_page_changed (CEPage *self)
|
||||||
{
|
{
|
||||||
|
@ -120,7 +112,6 @@ static void
|
||||||
emit_initialized (CEPage *self,
|
emit_initialized (CEPage *self,
|
||||||
GError *error)
|
GError *error)
|
||||||
{
|
{
|
||||||
self->initialized = TRUE;
|
|
||||||
g_signal_emit (self, signals[INITIALIZED], 0, error);
|
g_signal_emit (self, signals[INITIALIZED], 0, error);
|
||||||
g_clear_error (&error);
|
g_clear_error (&error);
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,8 +43,6 @@ typedef struct _CEPageClass CEPageClass;
|
||||||
struct _CEPage
|
struct _CEPage
|
||||||
{
|
{
|
||||||
GObject parent;
|
GObject parent;
|
||||||
|
|
||||||
gboolean initialized;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _CEPageClass
|
struct _CEPageClass
|
||||||
|
@ -65,7 +63,6 @@ const gchar *ce_page_get_security_setting (CEPage *page);
|
||||||
gboolean ce_page_validate (CEPage *page,
|
gboolean ce_page_validate (CEPage *page,
|
||||||
NMConnection *connection,
|
NMConnection *connection,
|
||||||
GError **error);
|
GError **error);
|
||||||
gboolean ce_page_get_initialized (CEPage *page);
|
|
||||||
void ce_page_changed (CEPage *page);
|
void ce_page_changed (CEPage *page);
|
||||||
void ce_page_complete_init (CEPage *page,
|
void ce_page_complete_init (CEPage *page,
|
||||||
NMConnection *connection,
|
NMConnection *connection,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue