mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
Fix some warnings after 6c9207579
This commit is contained in:
parent
f174988b7f
commit
7971dc83ef
@ -385,7 +385,7 @@ public:
|
||||
|
||||
QSize iconSize(docstring const & icon_size)
|
||||
{
|
||||
int size;
|
||||
unsigned int size;
|
||||
if (icon_size == "small")
|
||||
size = smallIconSize;
|
||||
else if (icon_size == "normal")
|
||||
@ -416,7 +416,7 @@ public:
|
||||
|
||||
static string icon_size;
|
||||
|
||||
int size = qsize.width();
|
||||
unsigned int size = qsize.width();
|
||||
|
||||
if (size < smallIconSize)
|
||||
size = smallIconSize;
|
||||
@ -3365,7 +3365,7 @@ bool GuiView::goToFileRow(string const & argument)
|
||||
}
|
||||
|
||||
|
||||
void GuiView::toolBarPopup(const QPoint & pos)
|
||||
void GuiView::toolBarPopup(const QPoint & /*pos*/)
|
||||
{
|
||||
QMenu * menu = new QMenu;
|
||||
menu = guiApp->menus().menu(toqstr("context-toolbars"), * this);
|
||||
|
Loading…
Reference in New Issue
Block a user