diff --git a/netwerk/wifi/win_wlanLibrary.h b/netwerk/wifi/win_wlanLibrary.h index 0637c891220..3daf4618eac 100644 --- a/netwerk/wifi/win_wlanLibrary.h +++ b/netwerk/wifi/win_wlanLibrary.h @@ -1,3 +1,5 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim:set ts=2 sts=2 sw=2 et cin: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ @@ -43,8 +45,8 @@ class WinWLANLibrary { class ScopedWLANObject { public: ScopedWLANObject(WinWLANLibrary* library, void* object) - : mObject(object), - mLibrary(library) + : mLibrary(library) + , mObject(object) { }