Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

cmdui: use wildcard imports for QtCore and QtGui

Changeset 31ca86d2ac9a

Parent 8f7ce6cd8344

by Yuki KODAMA

Changes to one file · Browse files at 31ca86d2ac9a Showing diff from parent 8f7ce6cd8344 Diff from another changeset...

 
5
6
7
8
9
10
11
 
 
12
13
14
 
5
6
7
 
 
 
 
8
9
10
11
12
@@ -5,10 +5,8 @@
 # This software may be used and distributed according to the terms of the  # GNU General Public License version 2, incorporated herein by reference.   -from PyQt4.QtCore import Qt, QObject, pyqtSignal -from PyQt4.QtGui import QDialog, QDialogButtonBox, QLabel, QProgressBar -from PyQt4.QtGui import QTextBrowser, QHBoxLayout, QGridLayout, QMessageBox -from PyQt4.QtGui import QWidget, QVBoxLayout +from PyQt4.QtCore import * +from PyQt4.QtGui import *    from tortoisehg.util import hglib  from tortoisehg.hgqt.i18n import _, localgettext