瀏覽代碼

UI: Remove unused static-inline function

Norihiro Kamae 1 年之前
父節點
當前提交
84b321e95e
共有 1 個文件被更改,包括 0 次插入5 次删除
  1. 0 5
      UI/window-basic-settings-a11y.cpp

+ 0 - 5
UI/window-basic-settings-a11y.cpp

@@ -11,11 +11,6 @@ enum ColorPreset {
 	COLOR_PRESET_CUSTOM = 99,
 };
 
-static inline bool WidgetChanged(QWidget *widget)
-{
-	return widget->property("changed").toBool();
-}
-
 static inline QColor color_from_int(long long val)
 {
 	return QColor(val & 0xff, (val >> 8) & 0xff, (val >> 16) & 0xff,