summary refs log tree commit diff
path: root/src/timeline
diff options
context:
space:
mode:
authorredsky17 <joedonofry@gmail.com>2019-06-11 23:36:46 -0400
committerredsky17 <joedonofry@gmail.com>2019-06-11 23:36:46 -0400
commit1d4966d5fd916f21bdbbad8080eec69bb2c817d6 (patch)
tree04dbeabb4007bcf5213bb65da5423370a1047eaf /src/timeline
parentFix lambda capture and lint issues (diff)
downloadnheko-1d4966d5fd916f21bdbbad8080eec69bb2c817d6.tar.xz
Add style for reply popup. Fix ALL of the linting issues
Diffstat (limited to 'src/timeline')
-rw-r--r--src/timeline/TimelineView.h4
-rw-r--r--src/timeline/TimelineViewManager.cpp3
2 files changed, 4 insertions, 3 deletions
diff --git a/src/timeline/TimelineView.h b/src/timeline/TimelineView.h
index 450b5dfa..db6087eb 100644
--- a/src/timeline/TimelineView.h
+++ b/src/timeline/TimelineView.h
@@ -121,7 +121,9 @@ public:
 
         // Add new events at the end of the timeline.
         void addEvents(const mtx::responses::Timeline &timeline);
-        void addUserMessage(mtx::events::MessageType ty, const QString &body, const QString &related_event);
+        void addUserMessage(mtx::events::MessageType ty,
+                            const QString &body,
+                            const QString &related_event);
         void addUserMessage(mtx::events::MessageType ty, const QString &msg);
 
         template<class Widget, mtx::events::MessageType MsgType>
diff --git a/src/timeline/TimelineViewManager.cpp b/src/timeline/TimelineViewManager.cpp
index 10c2d747..1ce3794f 100644
--- a/src/timeline/TimelineViewManager.cpp
+++ b/src/timeline/TimelineViewManager.cpp
@@ -79,8 +79,7 @@ TimelineViewManager::queueEmoteMessage(const QString &msg)
 }
 
 void
-TimelineViewManager::queueReplyMessage(const QString &reply,
-                                       const QString &related_event)
+TimelineViewManager::queueReplyMessage(const QString &reply, const QString &related_event)
 {
         if (active_room_.isEmpty())
                 return;