Windows Qt refactoring fix
This commit is contained in:
parent
066b419e16
commit
cf8ed36240
|
@ -598,7 +598,7 @@ class MyForm(settingsmixin.SMainWindow):
|
||||||
if 'win32' in sys.platform or 'win64' in sys.platform:
|
if 'win32' in sys.platform or 'win64' in sys.platform:
|
||||||
# Auto-startup for Windows
|
# Auto-startup for Windows
|
||||||
RUN_PATH = "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run"
|
RUN_PATH = "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run"
|
||||||
self.settings = QSettings(RUN_PATH, QSettings.NativeFormat)
|
self.settings = QtCore.QSettings(RUN_PATH, QtCore.QSettings.NativeFormat)
|
||||||
self.settings.remove(
|
self.settings.remove(
|
||||||
"PyBitmessage") # In case the user moves the program and the registry entry is no longer valid, this will delete the old registry entry.
|
"PyBitmessage") # In case the user moves the program and the registry entry is no longer valid, this will delete the old registry entry.
|
||||||
if BMConfigParser().getboolean('bitmessagesettings', 'startonlogon'):
|
if BMConfigParser().getboolean('bitmessagesettings', 'startonlogon'):
|
||||||
|
@ -2546,7 +2546,7 @@ class MyForm(settingsmixin.SMainWindow):
|
||||||
if 'win32' in sys.platform or 'win64' in sys.platform:
|
if 'win32' in sys.platform or 'win64' in sys.platform:
|
||||||
# Auto-startup for Windows
|
# Auto-startup for Windows
|
||||||
RUN_PATH = "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run"
|
RUN_PATH = "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run"
|
||||||
self.settings = QSettings(RUN_PATH, QSettings.NativeFormat)
|
self.settings = QtCore.QSettings(RUN_PATH, QtCore.QSettings.NativeFormat)
|
||||||
if BMConfigParser().getboolean('bitmessagesettings', 'startonlogon'):
|
if BMConfigParser().getboolean('bitmessagesettings', 'startonlogon'):
|
||||||
self.settings.setValue("PyBitmessage", sys.argv[0])
|
self.settings.setValue("PyBitmessage", sys.argv[0])
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user