Imported NewChanDialog into dialogs module
This commit is contained in:
parent
35a11c271a
commit
cd88d063a1
|
@ -25,7 +25,6 @@ from namecoin import namecoinConnection
|
||||||
from messageview import MessageView
|
from messageview import MessageView
|
||||||
from migrationwizard import *
|
from migrationwizard import *
|
||||||
from foldertree import *
|
from foldertree import *
|
||||||
from newchandialog import *
|
|
||||||
from safehtmlparser import *
|
from safehtmlparser import *
|
||||||
from settings import *
|
from settings import *
|
||||||
import settingsmixin
|
import settingsmixin
|
||||||
|
@ -1488,7 +1487,7 @@ class MyForm(settingsmixin.SMainWindow):
|
||||||
|
|
||||||
# opens 'join chan' dialog
|
# opens 'join chan' dialog
|
||||||
def click_actionJoinChan(self):
|
def click_actionJoinChan(self):
|
||||||
NewChanDialog(self)
|
dialogs.NewChanDialog(self)
|
||||||
|
|
||||||
def showConnectDialog(self):
|
def showConnectDialog(self):
|
||||||
dialog = dialogs.ConnectDialog(self)
|
dialog = dialogs.ConnectDialog(self)
|
||||||
|
|
|
@ -8,12 +8,17 @@ from tr import _translate
|
||||||
from retranslateui import RetranslateMixin
|
from retranslateui import RetranslateMixin
|
||||||
import widgets
|
import widgets
|
||||||
|
|
||||||
|
from newchandialog import NewChanDialog
|
||||||
|
|
||||||
import hashlib
|
import hashlib
|
||||||
import paths
|
import paths
|
||||||
from inventory import Inventory
|
from inventory import Inventory
|
||||||
from version import softwareVersion
|
from version import softwareVersion
|
||||||
|
|
||||||
|
|
||||||
|
__all__ = [NewChanDialog]
|
||||||
|
|
||||||
|
|
||||||
class AddressCheckMixin(object):
|
class AddressCheckMixin(object):
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user