diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-08-07 12:34:35 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-08-07 12:34:35 +0300 |
commit | a5863477f8fff72f1c5f782e5a7e9d07a46f3b4d (patch) | |
tree | c04bf2434f84b6adecded34987b84d3aefa8ee92 /mesongui.py | |
parent | 3e29c4fccba670c582400086b0a17963e2cebd71 (diff) | |
download | meson-a5863477f8fff72f1c5f782e5a7e9d07a46f3b4d.zip meson-a5863477f8fff72f1c5f782e5a7e9d07a46f3b4d.tar.gz meson-a5863477f8fff72f1c5f782e5a7e9d07a46f3b4d.tar.bz2 |
Kill end of line whitespace dead.
Diffstat (limited to 'mesongui.py')
-rwxr-xr-x | mesongui.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mesongui.py b/mesongui.py index fb45231..60dd455 100755 --- a/mesongui.py +++ b/mesongui.py @@ -18,7 +18,7 @@ import sys, os, pickle, time, shutil import build, coredata, environment, optinterpreter from PyQt5 import uic from PyQt5.QtWidgets import QApplication, QMainWindow, QHeaderView -from PyQt5.QtWidgets import QComboBox, QCheckBox +from PyQt5.QtWidgets import QComboBox, QCheckBox from PyQt5.QtCore import QAbstractItemModel, QModelIndex, QVariant, QTimer import PyQt5.QtCore import PyQt5.QtWidgets @@ -45,7 +45,7 @@ class PathModel(QAbstractItemModel): if index.isValid(): return 0 return len(self.names) - + def columnCount(self, index): return 2 @@ -111,7 +111,7 @@ class TargetModel(QAbstractItemModel): if index.isValid(): return 0 return len(self.targets) - + def columnCount(self, index): return 4 @@ -164,7 +164,7 @@ class DependencyModel(QAbstractItemModel): if index.isValid(): return 0 return len(self.deps) - + def columnCount(self, index): return 4 @@ -471,7 +471,7 @@ class MesonGui(): def clean(self, foo): self.run_process(['clean']) - + def save(self, foo): pickle.dump(self.coredata, open(self.coredata_file, 'wb')) |