Changeset 2985
- Timestamp:
- 08/17/08 20:22:21 (3 months ago)
- Location:
- vidalia/trunk/src/vidalia/log
- Files:
-
- 2 added
- 1 modified
-
logmessagecolumndelegate.cpp (added)
-
logmessagecolumndelegate.h (added)
-
logtreewidget.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vidalia/trunk/src/vidalia/log/logtreewidget.cpp
r2950 r2985 19 19 #include "logtreewidget.h" 20 20 #include "logheaderview.h" 21 #include "logmessagecolumndelegate.h" 21 22 22 23 … … 26 27 { 27 28 setHeader(new LogHeaderView(this)); 29 30 /* Tor's log messages are always in English, so stop Qt from futzing with 31 * the message text if we're currently using a non-English RTL layout. */ 32 if (layoutDirection() == Qt::RightToLeft) { 33 setItemDelegateForColumn(LogTreeWidget::MessageColumn, 34 new LogMessageColumnDelegate(this)); 35 } 28 36 29 37 /* Explicitly default to sorting messages chronologically */
