mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-19 13:56:06 -04:00
UI: Remove unused static-inline function
This commit is contained in:
committed by
Ryan Foster
parent
5dd97b3688
commit
84b321e95e
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user