summaryrefslogtreecommitdiff
path: root/plugins/warp/ui/matches.h
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-10-07 14:32:48 -0400
committerMason Reed <mason@vector35.com>2025-10-07 14:33:34 -0400
commit4a227e0523391bc026bf96c3c31d44a39cac1701 (patch)
treecc603b899a446fb469a0be3ae4c2c77e6351c091 /plugins/warp/ui/matches.h
parent3e24f6ab0b373d8718e26a19ac296044cc0d19c6 (diff)
[WARP] Format UI plugin
Diffstat (limited to 'plugins/warp/ui/matches.h')
-rw-r--r--plugins/warp/ui/matches.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/plugins/warp/ui/matches.h b/plugins/warp/ui/matches.h
index 88926add..6a2061ef 100644
--- a/plugins/warp/ui/matches.h
+++ b/plugins/warp/ui/matches.h
@@ -9,28 +9,28 @@
class WarpCurrentFunctionWidget : public QWidget
{
- Q_OBJECT
- FunctionRef m_current;
+ Q_OBJECT
+ FunctionRef m_current;
- QSplitter *m_splitter;
+ QSplitter* m_splitter;
- WarpFunctionTableWidget *m_tableWidget;
- WarpFunctionInfoWidget *m_infoWidget;
+ WarpFunctionTableWidget* m_tableWidget;
+ WarpFunctionInfoWidget* m_infoWidget;
- LoggerRef m_logger;
+ LoggerRef m_logger;
- std::shared_ptr<WarpFetcher> m_fetcher;
+ std::shared_ptr<WarpFetcher> m_fetcher;
public:
- explicit WarpCurrentFunctionWidget();
+ explicit WarpCurrentFunctionWidget();
- ~WarpCurrentFunctionWidget() override = default;
+ ~WarpCurrentFunctionWidget() override = default;
- void SetFetcher(std::shared_ptr<WarpFetcher> fetcher);
+ void SetFetcher(std::shared_ptr<WarpFetcher> fetcher);
- void SetCurrentFunction(FunctionRef current);
+ void SetCurrentFunction(FunctionRef current);
- FunctionRef GetCurrentFunction() { return m_current; };
+ FunctionRef GetCurrentFunction() { return m_current; };
- void UpdateMatches();
+ void UpdateMatches();
};