Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[db manager] Also removed completer.py file and its imports
  • Loading branch information
wonder-sk committed Feb 11, 2014
1 parent 83baa91 commit 6b74fee
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 139 deletions.
2 changes: 0 additions & 2 deletions python/plugins/db_manager/LICENSE
Expand Up @@ -6,8 +6,6 @@ http://www.gnu.org/copyleft/gpl.html

Code:
- some code is derived from PG_Manager by Martin Dobias (GPLv2 license)
- highlighter is based on "Python Syntax Highlighting Example" by Carson J. Q. Farmer (GPLv2 license)
- autocompletion based on "QTextEdit with autocompletion using pyqt" by rowinggolfer (GPLv2 license)

Icons:
- toolbar icons are derived from gis-0.1 iconset by Robert Szczepanek (Creative Commons Attribution-Share Alike 3.0 Unported license)
Expand Down
132 changes: 0 additions & 132 deletions python/plugins/db_manager/completer.py

This file was deleted.

5 changes: 0 additions & 5 deletions python/plugins/db_manager/dlg_sql_window.py
Expand Up @@ -31,9 +31,6 @@

from .ui.ui_DlgSqlWindow import Ui_DbManagerDlgSqlWindow as Ui_Dialog

from .highlighter import SqlHighlighter
from .completer import SqlCompleter

import re

class DlgSqlWindow(QDialog, Ui_Dialog):
Expand All @@ -52,8 +49,6 @@ def __init__(self, iface, db, parent=None):

self.editSql.setFocus()
self.editSql.initCompleter(self.db)
#SqlCompleter(self.editSql, self.db)
#SqlHighlighter(self.editSql, self.db)

# allow to copy results
copyAction = QAction("copy", self)
Expand Down

0 comments on commit 6b74fee

Please sign in to comment.