Kaydet (Commit) 76ab34ae authored tarafından Caolán McNamara's avatar Caolán McNamara

didn't know about the dockingwindows

Change-Id: I25c1361ed7b87abf4f78fb09aeea65206f7be040
üst 4e0d84c2
...@@ -21,6 +21,7 @@ queryboxes=0 ...@@ -21,6 +21,7 @@ queryboxes=0
warningboxes=0 warningboxes=0
msgboxes=0 msgboxes=0
floatingwindows=`git grep -h FloatingWindow -- *.src|grep -v HelpID|cut -d' ' -f2- |sort|uniq|wc -l` floatingwindows=`git grep -h FloatingWindow -- *.src|grep -v HelpID|cut -d' ' -f2- |sort|uniq|wc -l`
dockingwindows=`git grep -h DockingWindow -- *.src|grep -v HelpID|grep -v hrc|cut -d' ' -f2- |sort|uniq|wc -l`
echo There are $dialogs unconverted dialogs echo There are $dialogs unconverted dialogs
echo There are $tabpages unconverted tabpages echo There are $tabpages unconverted tabpages
...@@ -30,8 +31,9 @@ echo There are $queryboxes unconverted queryboxes ...@@ -30,8 +31,9 @@ echo There are $queryboxes unconverted queryboxes
echo There are $warningboxes unconverted warningboxes echo There are $warningboxes unconverted warningboxes
echo There are $msgboxes unconverted msgboxes echo There are $msgboxes unconverted msgboxes
echo There are $floatingwindows unconverted floatingwindows echo There are $floatingwindows unconverted floatingwindows
echo There are $dockingwindows unconverted dockingwindows
num=$(($floatingwindows)) num=$(($floatingwindows + dockingwindows))
echo An estimated additional $num .ui are required echo An estimated additional $num .ui are required
percent=$(($converted * 100 / ($num + $converted))) percent=$(($converted * 100 / ($num + $converted)))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment