diff options
Diffstat (limited to 'src/VBox/Main/src-server/BandwidthGroupImpl.cpp')
-rw-r--r-- | src/VBox/Main/src-server/BandwidthGroupImpl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/VBox/Main/src-server/BandwidthGroupImpl.cpp b/src/VBox/Main/src-server/BandwidthGroupImpl.cpp index 88725d7fb..b5dd1087c 100644 --- a/src/VBox/Main/src-server/BandwidthGroupImpl.cpp +++ b/src/VBox/Main/src-server/BandwidthGroupImpl.cpp @@ -63,12 +63,13 @@ struct BandwidthGroup::Data HRESULT BandwidthGroup::FinalConstruct() { - return S_OK; + return BaseFinalConstruct(); } void BandwidthGroup::FinalRelease() { uninit(); + BaseFinalRelease(); } // public initializer/uninitializer for internal purposes only |