We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e2fe66 commit 1042e95Copy full SHA for 1042e95
Source/UnrealEnginePython/Private/Slate/UEPySHeaderRow.cpp
@@ -1,5 +1,3 @@
1
-
2
3
#include "UnrealEnginePythonPrivatePCH.h"
4
5
#include "UEPySHeaderRow.h"
@@ -14,9 +12,9 @@ static PyObject *ue_PySHeaderRow_str(ue_PySHeaderRow *self)
14
12
15
13
static PyObject *py_ue_sheader_row_add_column(ue_PySHeaderRow *self, PyObject * args, PyObject *kwargs) {
16
+ char *column_id;
17
int cell_h_align = 0;
18
int cell_v_align = 0;
19
- char *column_id;
20
char *default_label = nullptr;
21
char *default_tooltip = nullptr;
22
float fill_width = 0;
@@ -62,7 +60,6 @@ static PyObject *py_ue_sheader_row_add_column(ue_PySHeaderRow *self, PyObject *
62
60
63
61
s_header_row->AddColumn(column);
64
65
66
Py_INCREF(self);
67
return (PyObject *)self;
68
}
0 commit comments