summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2017-04-18 18:18:58 +0200
committerMurray Cumming <murrayc@murrayc.com>2017-04-18 21:32:03 +0200
commitb8d14f135fd35f377e5a48d2d676b5951e219d71 (patch)
tree2b6894b0867df6ccca4636dd9cc379c967d07396 /tests
parenta81e5198454824412a0cb6ca9592d8a2b6274ace (diff)
downloadglibmm-b8d14f135fd35f377e5a48d2d676b5951e219d71.tar.gz
Gio::Socket: Move enums into class.
Diffstat (limited to 'tests')
-rw-r--r--tests/giomm_tls_client/main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/giomm_tls_client/main.cc b/tests/giomm_tls_client/main.cc
index e53c24bb..a4ec05cc 100644
--- a/tests/giomm_tls_client/main.cc
+++ b/tests/giomm_tls_client/main.cc
@@ -77,7 +77,7 @@ main(int, char**)
<< std::endl;
auto socket = Gio::Socket::create(
- first_inet_address->get_family(), Gio::SocketType::STREAM, Gio::SocketProtocol::TCP);
+ first_inet_address->get_family(), Gio::Socket::Type::STREAM, Gio::Socket::Protocol::TCP);
auto address = Gio::InetSocketAddress::create(first_inet_address, 443);