Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/guiframe/gui_style.py

    ra1b8fee r959eb01  
    33Provide the style for guiframe 
    44""" 
    5 from __future__ import print_function 
    6  
    75import wx 
    86import os 
     
    8179if __name__ == "__main__": 
    8280   
    83     print(GUIFRAME.DEFAULT_STYLE) 
    84     print(GUIFRAME.FLOATING_PANEL) 
    85     print(GUIFRAME.SINGLE_APPLICATION) 
     81    print GUIFRAME.DEFAULT_STYLE 
     82    print GUIFRAME.FLOATING_PANEL 
     83    print GUIFRAME.SINGLE_APPLICATION 
    8684    style = GUIFRAME.MULTIPLE_APPLICATIONS 
    8785    style &= GUIFRAME.PLOTTING_ON 
    88     print(style == GUIFRAME.PLOTTING_ON) 
     86    print style == GUIFRAME.PLOTTING_ON 
    8987    style1 = GUIFRAME.MULTIPLE_APPLICATIONS 
    9088    style1 &= (~GUIFRAME.MANAGER_ON) 
    91     print(style1 == GUIFRAME.DEFAULT_STYLE) 
    92     print(style1) 
     89    print style1 == GUIFRAME.DEFAULT_STYLE 
     90    print style1 
Note: See TracChangeset for help on using the changeset viewer.