source: dassmodus/trunk/dassmodus/dassmodus/dassmodus/htmldiffview.py@ 955

Last change on this file since 955 was 955, checked in by pstorz, on Sep 28, 2011 at 11:35:12 AM

forgotten files

File size: 352 bytes
Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3#
4
5from PyQt4 import QtGui, QtCore
6
7import Ui_htmldiffview
8
9class htmldiffdialog(QtGui.QDialog, Ui_htmldiffview.Ui_Dialog):
10
11 def __init__(self, parent = None):
12 super(htmldiffdialog, self).__init__()
13 self.setupUi(self)
14
15
16
17
18if __name__ == "__main__":
19
20 dialog = htmldiffdialog()
21 dialog.exec_()
Note: See TracBrowser for help on using the repository browser.