From 30a717c5d2a58e6aad9c27eae56e694db99a4fd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Thu, 17 Jul 2014 22:41:32 +0200 Subject: [PATCH] fixed a couple of names --- YACReaderLibrary/library_window.cpp | 8 ++++---- shortcuts_management/shortcuts_manager.h | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/YACReaderLibrary/library_window.cpp b/YACReaderLibrary/library_window.cpp index d61d796a..1aa167fd 100644 --- a/YACReaderLibrary/library_window.cpp +++ b/YACReaderLibrary/library_window.cpp @@ -412,14 +412,14 @@ void LibraryWindow::createActions() exportComicsInfoAction = new QAction(tr("Export comics info"),this); exportComicsInfoAction->setToolTip(tr("Export comics info")); - exportComicsInfoAction->setData(EXPORT_COMICS_INFO_YL); - exportComicsInfoAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(EXPORT_COMICS_INFO_YL)); + exportComicsInfoAction->setData(EXPORT_COMICS_INFO_ACTION_YL); + exportComicsInfoAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(EXPORT_COMICS_INFO_ACTION_YL)); exportComicsInfoAction->setIcon(QIcon(":/images/exportComicsInfoIcon.png")); importComicsInfoAction = new QAction(tr("Import comics info"),this); importComicsInfoAction->setToolTip(tr("Import comics info")); - importComicsInfoAction->setData(IMPORT_COMICS_INFO_YL); - importComicsInfoAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(IMPORT_COMICS_INFO_YL)); + importComicsInfoAction->setData(IMPORT_COMICS_INFO_ACTION_YL); + importComicsInfoAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(IMPORT_COMICS_INFO_ACTION_YL)); importComicsInfoAction->setIcon(QIcon(":/images/importComicsInfoIcon.png")); exportLibraryAction = new QAction(tr("Pack covers"),this); diff --git a/shortcuts_management/shortcuts_manager.h b/shortcuts_management/shortcuts_manager.h index d8cf0c69..a44d641b 100644 --- a/shortcuts_management/shortcuts_manager.h +++ b/shortcuts_management/shortcuts_manager.h @@ -34,8 +34,8 @@ public: #define FORWARD_ACTION_YL "FORWARD_ACTION_YL" #define CREATE_LIBRARY_ACTION_YL "CREATE_LIBRARY_ACTION_YL" #define OPEN_LIBRARY_ACTION_YL "OPEN_LIBRARY_ACTION_YL" -#define EXPORT_COMICS_INFO_YL "EXPORT_COMICS_INFO_YL" -#define IMPORT_COMICS_INFO_YL "IMPORT_COMICS_INFO_YL" +#define EXPORT_COMICS_INFO_ACTION_YL "EXPORT_COMICS_INFO_ACTION_YL" +#define IMPORT_COMICS_INFO_ACTION_YL "IMPORT_COMICS_INFO_ACTION_YL" #define EXPORT_LIBRARY_ACTION_YL "EXPORT_LIBRARY_ACTION_YL" #define IMPORT_LIBRARY_ACTION_YL "IMPORT_LIBRARY_ACTION_YL" #define UPDATE_LIBRARY_ACTION_YL "UPDATE_LIBRARY_ACTION_YL"