summaryrefslogtreecommitdiff
path: root/alf/alfgroupbox.cpp
diff options
context:
space:
mode:
authorJonas Kümmerlin <jonas@kuemmerlin.eu>2020-05-31 20:54:48 +0200
committerJonas Kümmerlin <jonas@kuemmerlin.eu>2020-05-31 20:54:48 +0200
commit91460d1ca83964d21abe84399b46d3f1a92d7b10 (patch)
treeda8095063b3cce88c4878c4754d438cebe933265 /alf/alfgroupbox.cpp
parentd75fd8d0ad863cf59c7d52d45ca596c1ff71a69f (diff)
label: implement naming style with underscores
Diffstat (limited to 'alf/alfgroupbox.cpp')
-rw-r--r--alf/alfgroupbox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/alf/alfgroupbox.cpp b/alf/alfgroupbox.cpp
index 40ca6cd..3aed7d1 100644
--- a/alf/alfgroupbox.cpp
+++ b/alf/alfgroupbox.cpp
@@ -32,7 +32,7 @@ ALF_GroupBox_IntializePriv(ALFGroupBoxPriv *priv, HWND window, const TCHAR *text
priv->layout.preApplyLayoutToContainerWidget = ALF_GroupBox_PreContainerWidgetApplyPos;
priv->label = ALF_AddLabel(window, (WORD)-1, -1, -1, text);
- ALF_LabelSetStyle(priv->label, ALF_LABEL_ALIGN_LEFT | ALF_LABEL_ALIGN_TOP);
+ ALF_Label_SetStyle(priv->label, ALF_LABEL_ALIGN_LEFT | ALF_LABEL_ALIGN_TOP);
ALF_GroupBox_HandleThemeChange(priv, window);
}