0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-10-02 11:54:59 +03:00

Fix typo. s/brin/bring.

This commit is contained in:
Mateusz Skowroński
2018-12-23 09:41:24 +01:00
parent 1b228a80df
commit 0d1db25d89
5 changed files with 8 additions and 8 deletions

View File

@@ -1238,7 +1238,7 @@ void BaseDesignIntf::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
pasteAction->setEnabled(true);
}
menu.addSeparator();
QAction* brinToTopAction = menu.addAction(QIcon(":/report/images/bringToTop"), tr("Bring to top"));
QAction* bringToTopAction = menu.addAction(QIcon(":/report/images/bringToTop"), tr("Bring to top"));
QAction* sendToBackAction = menu.addAction(QIcon(":/report/images/sendToBack"), tr("Send to back"));
QAction* createHLayout = 0;
if( page->selectedItems().count()>1){
@@ -1263,7 +1263,7 @@ void BaseDesignIntf::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
page->copy();
if (a == pasteAction)
page->paste();
if (a == brinToTopAction)
if (a == bringToTopAction)
page->bringToFront();
if (a == sendToBackAction)
page->sendToBack();