Skip to content
This repository has been archived by the owner on May 4, 2020. It is now read-only.

Commit

Permalink
Fix class regex.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyeonje Alex Jun committed Jun 10, 2013
1 parent 0884251 commit 12dfeec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HierarchyView.py
Expand Up @@ -115,7 +115,7 @@ def get_text_in_row(self, row):

def highlight_class_name(self, view, class_name):
def load_finished():
class_regex = ".*class\s+(%s)[^a-zA-z0-9_]\s*[:]?([^{]+)\{" % class_name # FIXME: C++ only
class_regex = ".*class\s+(%s)[^a-zA-z0-9_]\s*[:]?([^{]+)*\{" % class_name # FIXME: C++ only
class_region = view.find(class_regex, 0)

if class_region:
Expand Down

0 comments on commit 12dfeec

Please sign in to comment.