Changeset 13281 in josm for trunk/geticons.pl
- Timestamp:
- 2018-01-04T23:51:00+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/geticons.pl
r13279 r13281 69 69 ++$icons{$i}; 70 70 } 71 if($l =~ /createPreferenceTab\(\"(.*?)\"/)72 {73 my $i = "preferences/$1";74 ++$icons{$i};75 }76 71 if($l =~ /setIcon\(\"(.*?)\"/) 77 72 { … … 89 84 ++$icons{$i}; 90 85 } 91 if($l =~ /ImageProvider\.overlay\(.*?,\s*\"(.*?)\",/)92 {93 my $i = $1;94 ++$icons{$i};95 }96 86 if($l =~ /getCursor\(\"(.*?)\",\s*\"(.*?)\"/) 97 87 { … … 106 96 ++$icons{$i}; 107 97 } 108 if($l =~ /SideButton*\(\s*(?:mark)?tr\s*\(\s*\".*?\"\s*\)\s*,\s*\"(.*?)\"/)109 {110 my $i = "dialogs/$1";111 ++$icons{$i};112 }113 98 if($l =~ /super\(\s*tr\(\".*?\"\),\s*\"(.*?)\"/s) 114 99 { … … 119 104 { 120 105 my $i = "$extends$1"; 121 ++$icons{$i};122 }123 if($l =~ /audiotracericon\",\s*\"(.*?)\"/s)124 {125 my $i = "markers/$1";126 ++$icons{$i};127 }128 if($l =~ /\"(.*?)\",\s*parentLayer/s)129 {130 my $i = "markers/$1";131 106 ++$icons{$i}; 132 107 }
Note:
See TracChangeset
for help on using the changeset viewer.