[gedit-latex] Move windowactivatable from base to root



commit 725044418503135aa99fb30ce298b9d35594b094
Author: Ignacio Casal Quinteiro <icq gnome org>
Date:   Sat Oct 1 10:02:09 2011 +0200

    Move windowactivatable from base to root

 latex/Makefile.am                     |    3 ++-
 latex/base/Makefile.am                |    3 +--
 latex/{base => }/windowactivatable.py |   18 +++++++++---------
 3 files changed, 12 insertions(+), 12 deletions(-)
---
diff --git a/latex/Makefile.am b/latex/Makefile.am
index 41250bc..1a5a50b 100644
--- a/latex/Makefile.am
+++ b/latex/Makefile.am
@@ -12,7 +12,8 @@ plugin_PYTHON = \
 	singleton.py \
 	snippetmanager.py \
 	util.py \
-	views.py
+	views.py \
+	windowactivatable.py
 
 DISTCLEANFILES = \
 	gldefs.py
diff --git a/latex/base/Makefile.am b/latex/base/Makefile.am
index 5da04fb..9f38d29 100644
--- a/latex/base/Makefile.am
+++ b/latex/base/Makefile.am
@@ -9,7 +9,6 @@ plugin_PYTHON = \
 	__init__.py \
 	job.py \
 	tabdecorator.py \
-	templates.py \
-	windowactivatable.py
+	templates.py
 
 -include $(top_srcdir)/git.mk
diff --git a/latex/base/windowactivatable.py b/latex/windowactivatable.py
similarity index 98%
rename from latex/base/windowactivatable.py
rename to latex/windowactivatable.py
index 9a8a41f..65a9731 100644
--- a/latex/base/windowactivatable.py
+++ b/latex/windowactivatable.py
@@ -27,15 +27,15 @@ import string
 
 from gi.repository import Gedit, GObject, Gio, Gtk, PeasGtk
 
-from ..preferences import Preferences
-from ..preferences.dialog import PreferencesDialog
-from ..preferences.tools import ToolPreferences
-from ..tools import ToolAction
-from .config import EDITOR_SCOPE_VIEWS, ACTIONS
-from .tabdecorator import GeditTabDecorator
-from ..resources import Resources
-from . import PanelView, WindowContext
-from .file import File
+from .preferences import Preferences
+from .preferences.dialog import PreferencesDialog
+from .preferences.tools import ToolPreferences
+from .tools import ToolAction
+from .base.config import EDITOR_SCOPE_VIEWS, ACTIONS
+from .base.tabdecorator import GeditTabDecorator
+from .resources import Resources
+from .base import PanelView, WindowContext
+from .base.file import File
 
 LOG = logging.getLogger(__name__)
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]