Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2277)

Unified Diff: debugger/QT/SkListWidget.h

Issue 1034733004: Debugger: remove dead feature (SkPicture offset display) & fix bug (unbalanced indents) (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « debugger/QT/SkDebuggerGUI.cpp ('k') | debugger/QT/SkListWidget.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: debugger/QT/SkListWidget.h
diff --git a/debugger/QT/SkListWidget.h b/debugger/QT/SkListWidget.h
index d6e797ae9b58082f48e7bc752d434e74e1d1535f..4a799a01fe526ee3bd5a9182520a9d2c84603105 100644
--- a/debugger/QT/SkListWidget.h
+++ b/debugger/QT/SkListWidget.h
@@ -19,16 +19,11 @@
*/
class SkListWidget : public QAbstractItemDelegate {
public:
- enum IndexStyle {
- kIndex_IndexStyle,
- kOffset_IndexStyle,
- };
-
/**
Constructs the list widget with the specified parent for layout purposes.
@param parent The parent container of this widget
*/
- SkListWidget(QObject* parent = NULL) : fIndexStyle(kIndex_IndexStyle) {}
+ SkListWidget(QObject* parent = NULL) {}
virtual ~SkListWidget() {}
@@ -43,14 +38,6 @@ public:
*/
QSize sizeHint(const QStyleOptionViewItem& option,
const QModelIndex& index) const;
-
-
- void setIndexStyle(IndexStyle indexStyle) {
- fIndexStyle = indexStyle;
- }
-
-protected:
- IndexStyle fIndexStyle;
};
#endif
« no previous file with comments | « debugger/QT/SkDebuggerGUI.cpp ('k') | debugger/QT/SkListWidget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698