Commit bc6dc9b3be83ee4a670389654c743750213b3e63

Authored by Perry Werneck
1 parent 178f9886
Exists in master and in 1 other branch develop

Fixing row/col d-bus data types.

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
server/src/core/linux/gobject.c
... ... @@ -188,8 +188,8 @@ void ipc3270_add_terminal_introspection(GString *introspection) {
188 188 " <arg type='u' name='attribute' direction='out' />" \
189 189 " </method>" \
190 190 " <method name= 'getFieldAttributeAt'>" \
191   - " <arg type='i' name='row' direction='in' />" \
192   - " <arg type='i' name='col' direction='in' />" \
  191 + " <arg type='u' name='row' direction='in' />" \
  192 + " <arg type='u' name='col' direction='in' />" \
193 193 " <arg type='u' name='attribute' direction='out' />" \
194 194 " </method>" \
195 195 " <method name= 'getFieldAttributeAtAddress'>" \
... ... @@ -198,8 +198,8 @@ void ipc3270_add_terminal_introspection(GString *introspection) {
198 198 " </method>" \
199 199  
200 200 " <method name= 'waitForStringAt'>" \
201   - " <arg type='i' name='row' direction='in' />" \
202   - " <arg type='i' name='col' direction='in' />" \
  201 + " <arg type='u' name='row' direction='in' />" \
  202 + " <arg type='u' name='col' direction='in' />" \
203 203 " <arg type='s' name='text' direction='in' />" \
204 204 " <arg type='u' name='seconds' direction='in' />" \
205 205 " <arg type='u' name='attribute' direction='out' />" \
... ...