0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

UI: Remove unused static-inline function

This commit is contained in:
Norihiro Kamae 2024-07-30 00:07:05 +09:00 committed by Ryan Foster
parent 5dd97b3688
commit 84b321e95e

View File

@ -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,