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
40
Issues
40
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
76ec55fa
Commit
76ec55fa
authored
Sep 04, 2012
by
Dan Winship
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
connection-editor: keep track of the NMRemoteSettings on CEPage
parent
d12d4073
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
17 additions
and
0 deletions
+17
-0
src/connection-editor/ce-page.c
src/connection-editor/ce-page.c
+2
-0
src/connection-editor/ce-page.h
src/connection-editor/ce-page.h
+2
-0
src/connection-editor/page-8021x-security.c
src/connection-editor/page-8021x-security.c
+1
-0
src/connection-editor/page-bond.c
src/connection-editor/page-bond.c
+1
-0
src/connection-editor/page-dsl.c
src/connection-editor/page-dsl.c
+1
-0
src/connection-editor/page-ethernet.c
src/connection-editor/page-ethernet.c
+1
-0
src/connection-editor/page-infiniband.c
src/connection-editor/page-infiniband.c
+1
-0
src/connection-editor/page-ip4.c
src/connection-editor/page-ip4.c
+1
-0
src/connection-editor/page-ip6.c
src/connection-editor/page-ip6.c
+1
-0
src/connection-editor/page-mobile.c
src/connection-editor/page-mobile.c
+1
-0
src/connection-editor/page-ppp.c
src/connection-editor/page-ppp.c
+1
-0
src/connection-editor/page-vpn.c
src/connection-editor/page-vpn.c
+1
-0
src/connection-editor/page-wifi-security.c
src/connection-editor/page-wifi-security.c
+1
-0
src/connection-editor/page-wifi.c
src/connection-editor/page-wifi.c
+1
-0
src/connection-editor/page-wimax.c
src/connection-editor/page-wimax.c
+1
-0
No files found.
src/connection-editor/ce-page.c
View file @
76ec55fa
...
...
@@ -570,6 +570,7 @@ ce_page_new (GType page_type,
NMConnection
*
connection
,
GtkWindow
*
parent_window
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
*
ui_file
,
const
char
*
widget_name
,
const
char
*
title
)
...
...
@@ -587,6 +588,7 @@ ce_page_new (GType page_type,
NULL
));
self
->
title
=
g_strdup
(
title
);
self
->
client
=
client
;
self
->
settings
=
settings
;
if
(
ui_file
)
{
if
(
!
gtk_builder_add_from_file
(
self
->
builder
,
ui_file
,
&
error
))
{
...
...
src/connection-editor/ce-page.h
View file @
76ec55fa
...
...
@@ -75,6 +75,7 @@ typedef struct {
NMConnection
*
connection
;
GtkWindow
*
parent_window
;
NMClient
*
client
;
NMRemoteSettings
*
settings
;
gboolean
disposed
;
}
CEPage
;
...
...
@@ -145,6 +146,7 @@ CEPage *ce_page_new (GType page_type,
NMConnection
*
connection
,
GtkWindow
*
parent_window
,
NMClient
*
client
,
NMRemoteSettings
*
settings
,
const
char
*
ui_file
,
const
char
*
widget_name
,
const
char
*
title
);
...
...
src/connection-editor/page-8021x-security.c
View file @
76ec55fa
...
...
@@ -115,6 +115,7 @@ ce_page_8021x_security_new (NMConnection *connection,
connection
,
parent_window
,
client
,
settings
,
NULL
,
NULL
,
_
(
"802.1x Security"
)));
...
...
src/connection-editor/page-bond.c
View file @
76ec55fa
...
...
@@ -741,6 +741,7 @@ ce_page_bond_new (NMConnection *connection,
connection
,
parent_window
,
client
,
settings
,
UIDIR
"/ce-page-bond.ui"
,
"BondPage"
,
_
(
"Bond"
)));
...
...
src/connection-editor/page-dsl.c
View file @
76ec55fa
...
...
@@ -135,6 +135,7 @@ ce_page_dsl_new (NMConnection *connection,
connection
,
parent_window
,
client
,
settings
,
UIDIR
"/ce-page-dsl.ui"
,
"DslPage"
,
_
(
"DSL"
)));
...
...
src/connection-editor/page-ethernet.c
View file @
76ec55fa
...
...
@@ -245,6 +245,7 @@ ce_page_ethernet_new (NMConnection *connection,
connection
,
parent_window
,
client
,
settings
,
UIDIR
"/ce-page-ethernet.ui"
,
"EthernetPage"
,
_
(
"Ethernet"
)));
...
...
src/connection-editor/page-infiniband.c
View file @
76ec55fa
...
...
@@ -162,6 +162,7 @@ ce_page_infiniband_new (NMConnection *connection,
connection
,
parent_window
,
client
,
settings
,
UIDIR
"/ce-page-infiniband.ui"
,
"InfinibandPage"
,
_
(
"InfiniBand"
)));
...
...
src/connection-editor/page-ip4.c
View file @
76ec55fa
...
...
@@ -988,6 +988,7 @@ ce_page_ip4_new (NMConnection *connection,
connection
,
parent_window
,
client
,
settings
,
UIDIR
"/ce-page-ip4.ui"
,
"IP4Page"
,
_
(
"IPv4 Settings"
)));
...
...
src/connection-editor/page-ip6.c
View file @
76ec55fa
...
...
@@ -952,6 +952,7 @@ ce_page_ip6_new (NMConnection *connection,
connection
,
parent_window
,
client
,
settings
,
UIDIR
"/ce-page-ip6.ui"
,
"IP6Page"
,
_
(
"IPv6 Settings"
)));
...
...
src/connection-editor/page-mobile.c
View file @
76ec55fa
...
...
@@ -383,6 +383,7 @@ ce_page_mobile_new (NMConnection *connection,
connection
,
parent_window
,
client
,
settings
,
UIDIR
"/ce-page-mobile.ui"
,
"MobilePage"
,
_
(
"Mobile Broadband"
)));
...
...
src/connection-editor/page-ppp.c
View file @
76ec55fa
...
...
@@ -278,6 +278,7 @@ ce_page_ppp_new (NMConnection *connection,
connection
,
parent_window
,
client
,
settings
,
UIDIR
"/ce-page-ppp.ui"
,
"PppPage"
,
_
(
"PPP Settings"
)));
...
...
src/connection-editor/page-vpn.c
View file @
76ec55fa
...
...
@@ -107,6 +107,7 @@ ce_page_vpn_new (NMConnection *connection,
connection
,
parent_window
,
client
,
settings
,
NULL
,
NULL
,
_
(
"VPN"
)));
...
...
src/connection-editor/page-wifi-security.c
View file @
76ec55fa
...
...
@@ -401,6 +401,7 @@ ce_page_wifi_security_new (NMConnection *connection,
connection
,
parent_window
,
client
,
settings
,
UIDIR
"/ce-page-wifi-security.ui"
,
"WifiSecurityPage"
,
_
(
"Wi-Fi Security"
)));
...
...
src/connection-editor/page-wifi.c
View file @
76ec55fa
...
...
@@ -433,6 +433,7 @@ ce_page_wifi_new (NMConnection *connection,
connection
,
parent_window
,
client
,
settings
,
UIDIR
"/ce-page-wifi.ui"
,
"WifiPage"
,
_
(
"Wi-Fi"
)));
...
...
src/connection-editor/page-wimax.c
View file @
76ec55fa
...
...
@@ -128,6 +128,7 @@ ce_page_wimax_new (NMConnection *connection,
connection
,
parent_window
,
client
,
settings
,
UIDIR
"/ce-page-wimax.ui"
,
"WimaxPage"
,
_
(
"WiMAX"
)));
...
...
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