summaryrefslogtreecommitdiff
path: root/src/pluginlistcontextmenu.h
diff options
context:
space:
mode:
authorMikaƫl Capelle <capelle.mikael@gmail.com>2023-07-09 17:36:03 +0200
committerGitHub <noreply@github.com>2023-07-09 17:36:03 +0200
commitef94aee28464039672b277243a0181ae93550d6c (patch)
tree0575a68af5f154e9d6d0738edbaefb16a11d6f5c /src/pluginlistcontextmenu.h
parent7d6cb8528d20e36a4cee822263865ee2f7f32481 (diff)
parent3de050e9c03e553f7ae3f780f6bd080a30ae123e (diff)
Merge pull request #1839 from Holt59/ci/initial-gh-action-for-build
Clang-Format + Github Workflow
Diffstat (limited to 'src/pluginlistcontextmenu.h')
-rw-r--r--src/pluginlistcontextmenu.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/pluginlistcontextmenu.h b/src/pluginlistcontextmenu.h
index 0a9a01fe..f7d9757f 100644
--- a/src/pluginlistcontextmenu.h
+++ b/src/pluginlistcontextmenu.h
@@ -15,11 +15,11 @@ class PluginListContextMenu : public QMenu
Q_OBJECT
public:
-
- // creates a new context menu, the given index is the one for the click and should be valid
+ // creates a new context menu, the given index is the one for the click and should be
+ // valid
//
- PluginListContextMenu(
- const QModelIndex& index, OrganizerCore& core, PluginListView* modListView);
+ PluginListContextMenu(const QModelIndex& index, OrganizerCore& core,
+ PluginListView* modListView);
signals:
@@ -28,7 +28,6 @@ signals:
void openModInformation(unsigned int modIndex);
public:
-
// create the "Send to... " context menu
//
QMenu* createSendToContextMenu();
@@ -43,12 +42,10 @@ public:
void openOriginExplorer(const QModelIndexList& indices);
void openOriginInformation(const QModelIndex& index);
-
OrganizerCore& m_core;
QModelIndex m_index;
QModelIndexList m_selected;
PluginListView* m_view;
-
};
#endif