From 6812c973c9fa9b4ad642ab81856c05f87bd6fcc4 Mon Sep 17 00:00:00 2001 From: KyleMiles Date: Thu, 27 Jan 2022 22:43:28 -0500 Subject: Format All Files --- ui/uicomment.h | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) (limited to 'ui/uicomment.h') diff --git a/ui/uicomment.h b/ui/uicomment.h index 1ed71af7..d80444ec 100644 --- a/ui/uicomment.h +++ b/ui/uicomment.h @@ -13,7 +13,7 @@ typedef enum class UIComment { -public: + public: UICommentType type; FunctionRef func; BinaryViewRef data; @@ -21,21 +21,13 @@ public: QString content; - UIComment(UICommentType type, - FunctionRef func, - uint64_t address, - QString content): - type(type), func(func), - address(address), content(content) + UIComment(UICommentType type, FunctionRef func, uint64_t address, QString content) : + type(type), func(func), address(address), content(content) {} - UIComment(UICommentType type, - BinaryViewRef data, - uint64_t address, - QString content): - type(type), data(data), - address(address), content(content) + UIComment(UICommentType type, BinaryViewRef data, uint64_t address, QString content) : + type(type), data(data), address(address), content(content) {} -- cgit v1.3.1