| 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
|
|
|