Fixed imports.

This commit is contained in:
Bill Dengler 2015-04-19 19:28:27 -04:00
parent 109635b8f4
commit ddf9d29b7d
4 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
import baseDialog
import wx
import logging as original_logger
import application
class general(wx.Panel, baseDialog.BaseWXDialog):
def __init__(self, parent, languages):
super(general, self).__init__(parent)

View File

@ -18,7 +18,7 @@
############################################################
import wx
import widgetUtils
import application
class reportBugDialog(widgetUtils.BaseDialog):
def __init__(self, categories, reproducibilities, severities):
super(reportBugDialog, self).__init__(parent=None, id=wx.NewId())

View File

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
import wx
from multiplatform_widgets import widgets
import application
class sessionManagerWindow(wx.Dialog):
def __init__(self):
super(sessionManagerWindow, self).__init__(parent=None, title="Session manager", size=wx.DefaultSize)

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
import wx
import application
def retweet_question(parent):
return wx.MessageDialog(parent, _(u"Would you like to add a comment to this tweet?"), _("Retweet"), wx.YES_NO|wx.CANCEL|wx.ICON_QUESTION).ShowModal()