Build fix

master
Andrey Lihatskiy 2025-03-11 03:12:39 +02:00
parent ea7b63ffbf
commit c864e6a8b3
2 changed files with 4 additions and 3 deletions

View File

@ -62,13 +62,14 @@ private:
void onSaveClicked();
void onCancelClicked();
static void folderCreatedCallback(LLUUID folder_id);
void folderCreatedCallback(LLUUID folder_id);
LLComboBox* mFolderCombo;
LLLineEditor* mLandmarkTitleEditor;
LLTextEditor* mNotesEditor;
LLUUID mLandmarksID;
LLUUID mAssetID;
LLUUID mParentID;
LLLandmarksInventoryObserver* mInventoryObserver;
LLPointer<LLInventoryItem> mItem;

View File

@ -68,9 +68,9 @@ LLPanelEmojiComplete::LLPanelEmojiComplete(const LLPanelEmojiComplete::Params& p
{
LLScrollbar::Params sbparams;
sbparams.orientation(LLScrollbar::VERTICAL);
sbparams.doc_size(mTotalEmojis);
sbparams.doc_size(static_cast<S32>(mTotalEmojis));
sbparams.doc_pos(0);
sbparams.page_size(mVisibleEmojis);
sbparams.page_size(static_cast<S32>(mVisibleEmojis));
sbparams.change_callback([this](S32 index, LLScrollbar*) { onScrollbarChange(index); });
mScrollbar = LLUICtrlFactory::create<LLScrollbar>(sbparams);
addChild(mScrollbar);