UI: new public,protected,private icons

This commit is contained in:
Andreas Stallinger
2015-03-09 15:23:05 +01:00
parent 299cb49540
commit 5afd9aed2d
4 changed files with 2 additions and 3 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

+2 -3
View File
@@ -9,7 +9,7 @@ cd $MY_PATH/..
if [ "$1" = "release" ] || [ "$1" = "r" ]
then
if [ $2 = "test" ]
if [ "$2" = "test" ]
then
#echo "release test"
ninja -C build/Release Coati_test && cd bin/test && Release/Coati_test
@@ -19,7 +19,6 @@ then
fi
elif [ "$1" = "debug" ] || [ "$1" = "d" ]
then
echo "$2"
if [ "$2" = "test" ]
then
#echo "debug test"
@@ -29,5 +28,5 @@ then
ninja -C build/Debug Coati && cd bin/app && Debug/Coati
fi
else
echo "no arguments first argument 'release' or 'debug', if test second argument is 'test'"
echo "no arguments: first argument 'release' or 'debug', second argument 'test' for tests"
fi