From 8705543450e0f0af40db3717104ce710df0333f4 Mon Sep 17 00:00:00 2001 From: David Aguilar Date: Thu, 5 Jun 2008 00:26:19 -0700 Subject: [PATCH] Oops, these should have been renamed too. Signed-off-by: David Aguilar --- ugit/controllers/__init__.py | 4 ++-- ugit/controllers/merge.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ugit/controllers/__init__.py b/ugit/controllers/__init__.py index b1c277d2..db0e54ec 100644 --- a/ugit/controllers/__init__.py +++ b/ugit/controllers/__init__.py @@ -663,12 +663,12 @@ class Controller(QObserver): def viz_all(self): """Visualizes the entire git history using gitk.""" - browser = self.model.get_global_ugit_historybrowser() + browser = self.model.get_history_browser() utils.fork(browser,'--all') def viz_current(self): """Visualizes the current branch's history using gitk.""" - browser = self.model.get_global_ugit_historybrowser() + browser = self.model.get_history_browser() utils.fork(browser, self.model.get_currentbranch()) def move_event(self, event): diff --git a/ugit/controllers/merge.py b/ugit/controllers/merge.py index c03abecd..c18dc75e 100644 --- a/ugit/controllers/merge.py +++ b/ugit/controllers/merge.py @@ -85,5 +85,5 @@ class MergeController(QObserver): def viz_revision(self): revision = self.model.get_revision() - browser = self.model.get_global_ugit_historybrowser() + browser = self.model.get_history_browser() utils.fork(browser, revision) -- 2.11.4.GIT