Skip to content

Commit

Permalink
Bump version: 9.2-dev
Browse files Browse the repository at this point in the history
* Use core.callLater instead of wx.CallLater

nvaccess/nvda#8818
  • Loading branch information
nvdaes committed Dec 4, 2018
1 parent 8ecc256 commit 8eb52e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions addon/globalPlugins/emoticons/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import api
import speechDictHandler
import ui
import core
import wx
import gui
import addonHandler
Expand Down Expand Up @@ -343,10 +344,10 @@ def onOk(self, evt):
iconToInsert = icon.chars.decode("utf-8")
if api.copyToClip(iconToInsert):
# Translators: This is the message when smiley has been copied to the clipboard.
wx.CallLater(100, ui.message, _("Smiley copied to clipboard, ready for you to paste."))
core.callLater(100, ui.message, _("Smiley copied to clipboard, ready for you to paste."))
else:
# Translators: Message when the emoticon couldn't be copied.
wx.CallLater(100, ui.message, _("Cannot copy smiley."))
core.callLater(100, ui.message, _("Cannot copy smiley."))
self.Destroy()
InsertEmoticonDialog._instance = None

Expand Down
2 changes: 1 addition & 1 deletion buildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
"addon_description" : _("Enables the announcement of emoticon names instead of the character Representation."),
# version
"addon_version" : "9.1-dev",
"addon_version" : "9.2-dev",
# Author(s)
"addon_author" : u"Chris Leo <[email protected]>, Noelia Ruiz Martínez <[email protected]>, Mesar Hameed <[email protected]>, Francisco Javier Estrada Martínez <[email protected]>",
# URL for the add-on documentation support
Expand Down

0 comments on commit 8eb52e7

Please sign in to comment.