Last change
on this file since 90288 was 90288, checked in by vboxsync, 4 years ago |
FE/Qt: bugref:10067: Initial notification-center implementation; It's empty now, basic API only.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
794 bytes
|
Line | |
---|
1 | /* $Id: UINotificationObject.cpp 90288 2021-07-22 14:16:13Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Qt GUI - UINotificationObject class implementation.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2021 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | /* GUI includes: */
|
---|
19 | #include "UINotificationObject.h"
|
---|
20 |
|
---|
21 |
|
---|
22 | UINotificationObject::UINotificationObject()
|
---|
23 | {
|
---|
24 | }
|
---|
25 |
|
---|
26 | void UINotificationObject::close()
|
---|
27 | {
|
---|
28 | emit sigAboutToClose();
|
---|
29 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.