fix: lint

This commit is contained in:
Alex
2023-07-04 22:35:27 +02:00
parent 18d6dfea88
commit 6c196b8f8d
2 changed files with 10 additions and 9 deletions

View File

@ -1,12 +1,14 @@
#pragma once
#include <string>
#include <mutex>
#include <gtkmm/icontheme.h>
#include <mutex>
#include <string>
class DefaultGtkIconThemeWrapper {
private:
static std::mutex default_theme_mutex;
public:
static bool has_icon(const std::string&);
static Glib::RefPtr<Gdk::Pixbuf> load_icon(const char*, int, Gtk::IconLookupFlags);
private:
static std::mutex default_theme_mutex;
public:
static bool has_icon(const std::string&);
static Glib::RefPtr<Gdk::Pixbuf> load_icon(const char*, int, Gtk::IconLookupFlags);
};