blob: 491fd45192ca72e428625c3ca7eaa91f65680030 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGfx/ClassicWindowTheme.h>
#include <LibGfx/WindowTheme.h>
namespace Gfx {
WindowTheme& WindowTheme::current()
{
static ClassicWindowTheme theme;
return theme;
}
}
|