[gedit-latex] Move base/editor.py to root dir



commit b9c03ad23648bc2d040f9552ff1bddb21de7b41d
Author: Ignacio Casal Quinteiro <icq gnome org>
Date:   Sun Oct 2 09:34:54 2011 +0200

    Move base/editor.py to root dir

 latex/Makefile.am          |    1 +
 latex/base/Makefile.am     |    1 -
 latex/bibtex/editor.py     |    2 +-
 latex/{base => }/editor.py |    0
 latex/latex/editor.py      |    2 +-
 5 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/latex/Makefile.am b/latex/Makefile.am
index 32b2d1e..bc153f1 100644
--- a/latex/Makefile.am
+++ b/latex/Makefile.am
@@ -4,6 +4,7 @@ plugindir = $(libdir)/gedit/plugins/latex
 
 plugin_PYTHON = \
 	appactivatable.py \
+	editor.py \
 	file.py \
 	gldefs.py \
 	__init__.py \
diff --git a/latex/base/Makefile.am b/latex/base/Makefile.am
index f7a1f2f..c916b11 100644
--- a/latex/base/Makefile.am
+++ b/latex/base/Makefile.am
@@ -4,7 +4,6 @@ plugin_PYTHON = \
 	action.py \
 	completion.py \
 	config.py \
-	editor.py \
 	__init__.py \
 	job.py \
 	tabdecorator.py \
diff --git a/latex/bibtex/editor.py b/latex/bibtex/editor.py
index 6c20757..d940fab 100644
--- a/latex/bibtex/editor.py
+++ b/latex/bibtex/editor.py
@@ -27,7 +27,7 @@ BENCHMARK = True
 import logging
 if BENCHMARK: import time
 
-from ..base.editor import Editor
+from ..editor import Editor
 from ..preferences import Preferences
 from ..issues import Issue, IIssueHandler, MockIssueHandler
 from ..util import verbose
diff --git a/latex/base/editor.py b/latex/editor.py
similarity index 100%
rename from latex/base/editor.py
rename to latex/editor.py
diff --git a/latex/latex/editor.py b/latex/latex/editor.py
index 2f28187..65ee104 100644
--- a/latex/latex/editor.py
+++ b/latex/latex/editor.py
@@ -30,7 +30,7 @@ if BENCHMARK: import time
 from gi.repository import Gtk, GObject
 from gi.repository import Gdk
 
-from ..base.editor import Editor
+from ..editor import Editor
 from ..file import File
 from ..issues import Issue, IIssueHandler
 from ..util import verbose, open_error



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