зеркало из https://github.com/mozilla/gecko-dev.git
Bug 3187: Teach Windows select widgets how to insert in the middle of a list (4 of 3)
This commit is contained in:
Родитель
2a919f00ad
Коммит
c3627a8126
|
@ -56,7 +56,7 @@ nsComboBox::nsComboBox() : nsWindow(), nsIListWidget(), nsIComboBox()
|
|||
NS_METHOD nsComboBox::AddItemAt(nsString &aItem, PRInt32 aPosition)
|
||||
{
|
||||
NS_ALLOC_STR_BUF(val, aItem, 256);
|
||||
::SendMessage(mWnd, CB_ADDSTRING, (int)aPosition, (LPARAM)(LPCTSTR)val);
|
||||
::SendMessage(mWnd, CB_INSERTSTRING, (int)aPosition, (LPARAM)(LPCTSTR)val);
|
||||
NS_FREE_STR_BUF(val);
|
||||
return NS_OK;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче