browsercore/appfw/Api/Dialogs/WebDialogProvider.h
changeset 10 232fbd5a2dcb
parent 5 0f2326c2a325
equal deleted inserted replaced
6:1c3b8676e58c 10:232fbd5a2dcb
   204     static int getInteger(
   204     static int getInteger(
   205         QWidget *parent, 
   205         QWidget *parent, 
   206         const QString &title,
   206         const QString &title,
   207         const QString &label, 
   207         const QString &label, 
   208         int value = 0,
   208         int value = 0,
   209         int minValue = -2147483648, // 0x80000000 
   209         int minValue = 0x80000000, // -2147483648
   210         int maxValue = 0x7FFFFFFF,
   210         int maxValue = 0x7FFFFFFF,
   211         int step = 1, 
   211         int step = 1, 
   212         bool *ok = 0, 
   212         bool *ok = 0, 
   213         Qt::WindowFlags flags = 0);
   213         Qt::WindowFlags flags = 0);
   214 
   214