blob: 6f686ece6364cbdc4af142273cc7429f651ea9c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* 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;
}
WindowTheme::~WindowTheme()
{
}
}
|