ProjectWeb/Html5ToCss3Converter.py

changeset 32
1fa09d596edb
parent 30
38092622e612
child 34
a6d8718f37b5
equal deleted inserted replaced
31:4c569c1682da 32:1fa09d596edb
51 Public method to get the converted CSS3 text. 51 Public method to get the converted CSS3 text.
52 52
53 @return CSS3 text (string) 53 @return CSS3 text (string)
54 """ 54 """
55 dlg = Html5ToCss3ConverterParameterDialog() 55 dlg = Html5ToCss3ConverterParameterDialog()
56 if dlg.exec_() == QDialog.Accepted: 56 if dlg.exec() == QDialog.Accepted:
57 indentation, placeholders = dlg.getData() 57 indentation, placeholders = dlg.getData()
58 58
59 self.__createSoup() 59 self.__createSoup()
60 60
61 alreadyDone = list(self.TagsToIgnore) 61 alreadyDone = list(self.TagsToIgnore)

eric ide

mercurial