diff options
author | René Stadler <mail@renestadler.de> | 2012-08-24 01:37:27 +0200 |
---|---|---|
committer | René Stadler <mail@renestadler.de> | 2012-08-24 01:58:33 +0200 |
commit | de0f3656fc79f950a1be1f134fabc9aa7d3ff024 (patch) | |
tree | 9f69c6c5892ce4696f15ceb63086526d00602b46 /GstDebugViewer | |
parent | 6d154a0cdc1925b47c6bbb5c59983dbc78d5b78f (diff) |
models: cleanup dead code
Diffstat (limited to 'GstDebugViewer')
-rw-r--r-- | GstDebugViewer/GUI/models.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/GstDebugViewer/GUI/models.py b/GstDebugViewer/GUI/models.py index f3139de..3191d7e 100644 --- a/GstDebugViewer/GUI/models.py +++ b/GstDebugViewer/GUI/models.py @@ -261,10 +261,6 @@ class FilteredLogModelBase (LogModelBase): return line_index - def super_model_changed (self): - - pass - def _iter_hierarchy (self): model = self @@ -272,23 +268,6 @@ class FilteredLogModelBase (LogModelBase): yield model model = model.super_model -class FilteredLogModelIdentity (FilteredLogModelBase): - - def __init__ (self, super_model): - - FilteredLogModelBase.__init__ (self, super_model) - - self.line_offsets = self.super_model.line_offsets - self.line_levels = self.super_model.line_levels - - def line_index_from_super (self, super_line_index): - - return super_line_index - - def line_index_to_super (self, line_index): - - return line_index - class FilteredLogModel (FilteredLogModelBase): def __init__ (self, super_model): |