소스 검색

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,