More TODO resolution/shuffling.
This commit is contained in:
parent
b3adda2287
commit
572084aaeb
|
@ -1,5 +1,6 @@
|
||||||
wine
|
wine
|
||||||
- say that dialogs respond to WM_PRINTCLIENT on xp+ with visual styles enabled
|
- say that dialogs respond to WM_PRINTCLIENT on xp+ with visual styles enabled
|
||||||
|
- trackbars are not clamped with TBM_SETPOS
|
||||||
|
|
||||||
uthash
|
uthash
|
||||||
- stdint code misses MinGW(-w64)
|
- stdint code misses MinGW(-w64)
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
// 20 may 2015
|
// 20 may 2015
|
||||||
#include "uipriv_windows.h"
|
#include "uipriv_windows.h"
|
||||||
|
|
||||||
// TODOs
|
|
||||||
// - wine does not clamp TBM_SETPOS
|
|
||||||
|
|
||||||
struct slider {
|
struct slider {
|
||||||
uiSlider s;
|
uiSlider s;
|
||||||
HWND hwnd;
|
HWND hwnd;
|
||||||
|
@ -49,7 +46,6 @@ static void sliderPreferredSize(uiControl *c, uiSizing *d, intmax_t *width, intm
|
||||||
*height = uiWindowsDlgUnitsToY(sliderHeight, d->Sys->BaseY);
|
*height = uiWindowsDlgUnitsToY(sliderHeight, d->Sys->BaseY);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO does it go here relative of other things?
|
|
||||||
static void defaultOnChanged(uiSlider *s, void *data)
|
static void defaultOnChanged(uiSlider *s, void *data)
|
||||||
{
|
{
|
||||||
// do nothing
|
// do nothing
|
||||||
|
|
Loading…
Reference in New Issue