~ubuntu-branches/debian/sid/calibre/sid

« back to all changes in this revision

Viewing changes to src/calibre/gui2/tweak_book/editor/smart/__init__.py

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2014-05-14 18:17:50 UTC
  • mto: This revision was merged to the branch mainline in revision 75.
  • Revision ID: package-import@ubuntu.com-20140514181750-efj1wymey2vb4cao
Tags: upstream-1.36.0+dfsg
ImportĀ upstreamĀ versionĀ 1.36.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
    def get_extra_selections(self, editor):
15
15
        return ()
16
16
 
 
17
    def get_smart_selection(self, editor, update=True):
 
18
        return editor.selected_text
 
19
 
 
20
    def verify_for_spellcheck(self, cursor, highlighter):
 
21
        return False
 
22