Skip to content

Commit 26cb990

Browse files
author
James Draper
committed
Mixed results changing from Qbool to bool
1 parent 382932c commit 26cb990

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

qtpandas/views/CSVDialogs.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)