##// END OF EJS Templates
Add lambda in VIsualizationWidget to fix the bug of the corner widget button size...
Add lambda in VIsualizationWidget to fix the bug of the corner widget button size Modify the property of the QFrame to ensure the box around the zone widget to be visible

File last commit:

r2:451739a45362
r186:134da9ef870f
Show More
IPSIS_S03.tcl
25 lines | 942 B | application/x-tcl | TclLexer
#!/usr/bin/tclsh
# The macros in header files should begin with the name of the project to avoid
# collisions
set projectName [string toupper [getParameter "project-name" "PROJECTNAMENOTFOUND"]]
foreach fileName [getSourceFileNames] {
if {[regexp {\.h$} $fileName]} {
set prev ""
foreach token [getTokens $fileName 1 0 -1 -1 {pp_define identifier}] {
set type [lindex $token 3]
if {$prev == "pp_define" && $type == "identifier"} {
set identifier [lindex $token 0]
if {![regexp "^${projectName}.*$" $identifier]} {
set line [lindex $token 1]
report $fileName $line "The macros in header files should begin with the name of the project to avoid collisions. (project name: $projectName, macro found: $identifier)"
}
}
set prev $type
}
}
}