mail: Store mode flags by-value, not by-reference.

They are passed into the constructor by-value, and Clang warns that
we are taking the reference of a temporary.
This commit is contained in:
Augustin Cavalier
2018-06-18 23:20:18 -04:00
parent a309b7c3a1
commit 9b326aa287
+1 -1
View File
@@ -42,7 +42,7 @@ private:
bool fIsInbound;
ErrorLogWindow* fErrorWindow;
BNotification fNotification;
uint32& fShowMode;
uint32 fShowMode;
uint32 fTotalItems;
uint32 fItemsDone;