Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
network-manager-applet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
39
Issues
39
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
network-manager-applet
Commits
0b6b8348
Commit
0b6b8348
authored
Feb 21, 2012
by
Dan Winship
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
connection-editor: pass the NMRemoteSettings object to page constructors
parent
5392b468
Changes
26
Hide whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
27 additions
and
1 deletion
+27
-1
src/connection-editor/ce-page.h
src/connection-editor/ce-page.h
+1
-0
src/connection-editor/nm-connection-editor.c
src/connection-editor/nm-connection-editor.c
+2
-1
src/connection-editor/page-8021x-security.c
src/connection-editor/page-8021x-security.c
+1
-0
src/connection-editor/page-8021x-security.h
src/connection-editor/page-8021x-security.h
+1
-0
src/connection-editor/page-dsl.c
src/connection-editor/page-dsl.c
+1
-0
src/connection-editor/page-dsl.h
src/connection-editor/page-dsl.h
+1
-0
src/connection-editor/page-ethernet.c
src/connection-editor/page-ethernet.c
+1
-0
src/connection-editor/page-ethernet.h
src/connection-editor/page-ethernet.h
+1
-0
src/connection-editor/page-infiniband.c
src/connection-editor/page-infiniband.c
+1
-0
src/connection-editor/page-infiniband.h
src/connection-editor/page-infiniband.h
+1
-0
src/connection-editor/page-ip4.c
src/connection-editor/page-ip4.c
+1
-0
src/connection-editor/page-ip4.h
src/connection-editor/page-ip4.h
+1
-0
src/connection-editor/page-ip6.c
src/connection-editor/page-ip6.c
+1
-0
src/connection-editor/page-ip6.h
src/connection-editor/page-ip6.h
+1
-0
src/connection-editor/page-mobile.c
src/connection-editor/page-mobile.c
+1
-0
src/connection-editor/page-mobile.h
src/connection-editor/page-mobile.h
+1
-0
src/connection-editor/page-ppp.c
src/connection-editor/page-ppp.c
+1
-0
src/connection-editor/page-ppp.h
src/connection-editor/page-ppp.h
+1
-0
src/connection-editor/page-vpn.c
src/connection-editor/page-vpn.c
+1
-0
src/connection-editor/page-vpn.h
src/connection-editor/page-vpn.h
+1
-0
src/connection-editor/page-wifi-security.c
src/connection-editor/page-wifi-security.c
+1
-0
src/connection-editor/page-wifi-security.h
src/connection-editor/page-wifi-security.h
+1
-0
src/connection-editor/page-wifi.c
src/connection-editor/page-wifi.c
+1
-0
src/connection-editor/page-wifi.h
src/connection-editor/page-wifi.h
+1
-0
src/connection-editor/page-wimax.c
src/connection-editor/page-wimax.c
+1
-0
src/connection-editor/page-wimax.h
src/connection-editor/page-wimax.h
+1
-0
No files found.
src/connection-editor/ce-page.h
View file @
0b6b8348
...
...
@@ -97,6 +97,7 @@ typedef struct {
typedef
CEPage
*
(
*
CEPageNewFunc
)(
NMConnection
*
connection
,
GtkWindow
*
parent
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
);
...
...
src/connection-editor/nm-connection-editor.c
View file @
0b6b8348
...
...
@@ -775,7 +775,8 @@ add_page (NMConnectionEditor *editor,
g_return_val_if_fail
(
func
!=
NULL
,
FALSE
);
g_return_val_if_fail
(
connection
!=
NULL
,
FALSE
);
page
=
(
*
func
)
(
connection
,
GTK_WINDOW
(
editor
->
window
),
editor
->
client
,
&
secrets_setting_name
,
error
);
page
=
(
*
func
)
(
connection
,
GTK_WINDOW
(
editor
->
window
),
editor
->
client
,
editor
->
settings
,
&
secrets_setting_name
,
error
);
if
(
page
)
{
g_object_set_data_full
(
G_OBJECT
(
page
),
SECRETS_TAG
,
...
...
src/connection-editor/page-8021x-security.c
View file @
0b6b8348
...
...
@@ -103,6 +103,7 @@ CEPage *
ce_page_8021x_security_new
(
NMConnection
*
connection
,
GtkWindow
*
parent_window
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
)
{
...
...
src/connection-editor/page-8021x-security.h
View file @
0b6b8348
...
...
@@ -52,6 +52,7 @@ GType ce_page_8021x_security_get_type (void);
CEPage
*
ce_page_8021x_security_new
(
NMConnection
*
connection
,
GtkWindow
*
parent
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
);
...
...
src/connection-editor/page-dsl.c
View file @
0b6b8348
...
...
@@ -124,6 +124,7 @@ CEPage *
ce_page_dsl_new
(
NMConnection
*
connection
,
GtkWindow
*
parent_window
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
)
{
...
...
src/connection-editor/page-dsl.h
View file @
0b6b8348
...
...
@@ -50,6 +50,7 @@ GType ce_page_dsl_get_type (void);
CEPage
*
ce_page_dsl_new
(
NMConnection
*
connection
,
GtkWindow
*
parent
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
);
...
...
src/connection-editor/page-ethernet.c
View file @
0b6b8348
...
...
@@ -258,6 +258,7 @@ CEPage *
ce_page_ethernet_new
(
NMConnection
*
connection
,
GtkWindow
*
parent_window
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
)
{
...
...
src/connection-editor/page-ethernet.h
View file @
0b6b8348
...
...
@@ -50,6 +50,7 @@ GType ce_page_ethernet_get_type (void);
CEPage
*
ce_page_ethernet_new
(
NMConnection
*
connection
,
GtkWindow
*
parent
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
);
...
...
src/connection-editor/page-infiniband.c
View file @
0b6b8348
...
...
@@ -174,6 +174,7 @@ CEPage *
ce_page_infiniband_new
(
NMConnection
*
connection
,
GtkWindow
*
parent_window
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
)
{
...
...
src/connection-editor/page-infiniband.h
View file @
0b6b8348
...
...
@@ -48,6 +48,7 @@ GType ce_page_infiniband_get_type (void);
CEPage
*
ce_page_infiniband_new
(
NMConnection
*
connection
,
GtkWindow
*
parent
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
);
...
...
src/connection-editor/page-ip4.c
View file @
0b6b8348
...
...
@@ -976,6 +976,7 @@ CEPage *
ce_page_ip4_new
(
NMConnection
*
connection
,
GtkWindow
*
parent_window
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
)
{
...
...
src/connection-editor/page-ip4.h
View file @
0b6b8348
...
...
@@ -50,6 +50,7 @@ GType ce_page_ip4_get_type (void);
CEPage
*
ce_page_ip4_new
(
NMConnection
*
connection
,
GtkWindow
*
parent
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
);
...
...
src/connection-editor/page-ip6.c
View file @
0b6b8348
...
...
@@ -940,6 +940,7 @@ CEPage *
ce_page_ip6_new
(
NMConnection
*
connection
,
GtkWindow
*
parent_window
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
)
{
...
...
src/connection-editor/page-ip6.h
View file @
0b6b8348
...
...
@@ -50,6 +50,7 @@ GType ce_page_ip6_get_type (void);
CEPage
*
ce_page_ip6_new
(
NMConnection
*
connection
,
GtkWindow
*
parent
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
);
...
...
src/connection-editor/page-mobile.c
View file @
0b6b8348
...
...
@@ -364,6 +364,7 @@ CEPage *
ce_page_mobile_new
(
NMConnection
*
connection
,
GtkWindow
*
parent_window
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
)
{
...
...
src/connection-editor/page-mobile.h
View file @
0b6b8348
...
...
@@ -50,6 +50,7 @@ GType ce_page_mobile_get_type (void);
CEPage
*
ce_page_mobile_new
(
NMConnection
*
connection
,
GtkWindow
*
parent
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
);
...
...
src/connection-editor/page-ppp.c
View file @
0b6b8348
...
...
@@ -266,6 +266,7 @@ CEPage *
ce_page_ppp_new
(
NMConnection
*
connection
,
GtkWindow
*
parent_window
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
)
{
...
...
src/connection-editor/page-ppp.h
View file @
0b6b8348
...
...
@@ -50,6 +50,7 @@ GType ce_page_ppp_get_type (void);
CEPage
*
ce_page_ppp_new
(
NMConnection
*
connection
,
GtkWindow
*
parent
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
);
...
...
src/connection-editor/page-vpn.c
View file @
0b6b8348
...
...
@@ -95,6 +95,7 @@ CEPage *
ce_page_vpn_new
(
NMConnection
*
connection
,
GtkWindow
*
parent_window
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
)
{
...
...
src/connection-editor/page-vpn.h
View file @
0b6b8348
...
...
@@ -50,6 +50,7 @@ GType ce_page_vpn_get_type (void);
CEPage
*
ce_page_vpn_new
(
NMConnection
*
connection
,
GtkWindow
*
parent
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
);
...
...
src/connection-editor/page-wifi-security.c
View file @
0b6b8348
...
...
@@ -381,6 +381,7 @@ CEPage *
ce_page_wifi_security_new
(
NMConnection
*
connection
,
GtkWindow
*
parent_window
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
)
{
...
...
src/connection-editor/page-wifi-security.h
View file @
0b6b8348
...
...
@@ -58,6 +58,7 @@ GType ce_page_wifi_security_get_type (void);
CEPage
*
ce_page_wifi_security_new
(
NMConnection
*
connection
,
GtkWindow
*
parent
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
);
...
...
src/connection-editor/page-wifi.c
View file @
0b6b8348
...
...
@@ -445,6 +445,7 @@ CEPage *
ce_page_wifi_new
(
NMConnection
*
connection
,
GtkWindow
*
parent_window
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
)
{
...
...
src/connection-editor/page-wifi.h
View file @
0b6b8348
...
...
@@ -50,6 +50,7 @@ GType ce_page_wifi_get_type (void);
CEPage
*
ce_page_wifi_new
(
NMConnection
*
connection
,
GtkWindow
*
parent
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
);
...
...
src/connection-editor/page-wimax.c
View file @
0b6b8348
...
...
@@ -140,6 +140,7 @@ CEPage *
ce_page_wimax_new
(
NMConnection
*
connection
,
GtkWindow
*
parent_window
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
)
{
...
...
src/connection-editor/page-wimax.h
View file @
0b6b8348
...
...
@@ -48,6 +48,7 @@ GType ce_page_wimax_get_type (void);
CEPage
*
ce_page_wimax_new
(
NMConnection
*
connection
,
GtkWindow
*
parent
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
**
out_secrets_setting_name
,
GError
**
error
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment