comctl32/tests: Enable statusbar tooltip tests.
This commit is contained in:
parent
4f77b00372
commit
193d13c421
|
@ -261,7 +261,7 @@ static void test_status_control(void)
|
||||||
char ch;
|
char ch;
|
||||||
char chstr[10] = "Inval id";
|
char chstr[10] = "Inval id";
|
||||||
|
|
||||||
hWndStatus = create_status_control(WS_VISIBLE, 0);
|
hWndStatus = create_status_control(WS_VISIBLE | SBT_TOOLTIPS, 0);
|
||||||
|
|
||||||
/* Divide into parts and set text */
|
/* Divide into parts and set text */
|
||||||
r = SendMessage(hWndStatus, SB_SETPARTS, 3, (LPARAM)nParts);
|
r = SendMessage(hWndStatus, SB_SETPARTS, 3, (LPARAM)nParts);
|
||||||
|
@ -400,15 +400,12 @@ static void test_status_control(void)
|
||||||
expect(FALSE,r);
|
expect(FALSE,r);
|
||||||
|
|
||||||
/* Set the ToolTip text */
|
/* Set the ToolTip text */
|
||||||
todo_wine
|
SendMessage(hWndStatus, SB_SETTIPTEXT, 0,(LPARAM) "Tooltip Text");
|
||||||
{
|
lstrcpyA(charArray, "apple");
|
||||||
SendMessage(hWndStatus, SB_SETTIPTEXT, 0,(LPARAM) "Tooltip Text");
|
SendMessage(hWndStatus, SB_GETTIPTEXT, MAKEWPARAM (0, 20),(LPARAM) charArray);
|
||||||
lstrcpyA(charArray, "apple");
|
ok(strcmp(charArray,"Tooltip Text") == 0 ||
|
||||||
SendMessage(hWndStatus, SB_GETTIPTEXT, MAKEWPARAM (0, 20),(LPARAM) charArray);
|
broken(!strcmp(charArray, "apple")), /* win95 */
|
||||||
ok(strcmp(charArray,"Tooltip Text") == 0 ||
|
"Expected Tooltip Text, got %s\n", charArray);
|
||||||
broken(!strcmp(charArray, "apple")), /* win95 */
|
|
||||||
"Expected Tooltip Text, got %s\n", charArray);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Make simple */
|
/* Make simple */
|
||||||
SendMessage(hWndStatus, SB_SIMPLE, TRUE, 0);
|
SendMessage(hWndStatus, SB_SIMPLE, TRUE, 0);
|
||||||
|
|
Loading…
Reference in New Issue