File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ def _initUI(self):
120120 layout .addWidget (self .otherSeparatorLineEdit )
121121 self .setLayout (layout )
122122
123- @Slot ('QBool ' )
123+ @Slot ('bool ' )
124124 def _enableLine (self , toggled ):
125125 self .otherSeparatorLineEdit .setEnabled (toggled )
126126
@@ -142,7 +142,7 @@ def currentSelected(self):
142142 return
143143
144144
145- @Slot ('QBool ' )
145+ @Slot ('bool ' )
146146 def _delimiter (self , checked ):
147147 if checked :
148148 if self .commaRadioButton .isChecked ():
@@ -319,7 +319,7 @@ def _openFile(self):
319319 self ._filenameLineEdit .setText (ret )
320320 self ._updateFilename ()
321321
322- @Slot ('QBool ' )
322+ @Slot ('bool ' )
323323 def _updateHeader (self , toggled ):
324324 """Changes the internal flag, whether the csv file contains a header or not.
325325
@@ -498,7 +498,7 @@ class CSVExportDialog(QtGui.QDialog):
498498 """An widget to serialize a `DataFrameModel` to a `CSV-File`.
499499
500500 """
501- exported = Signal ('QBool ' )
501+ exported = Signal ('bool ' )
502502
503503 def __init__ (self , model = None , parent = None ):
504504 super (CSVExportDialog , self ).__init__ (parent )
You can’t perform that action at this time.
0 commit comments