WindowTheme.cpp 299 B

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