Proper fix for compiler warnings by adding const to the _get functions
authorChristopher Michael <cpmichael1@comcast.net>
Fri, 21 May 2010 19:26:57 +0000 (19:26 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Fri, 21 May 2010 19:26:57 +0000 (19:26 +0000)
commit908be9b265a3014a9ae1f2ded98a61b1ed50eacf
tree59c17a8117b8a8e3e7a621ff030080e5d57a5d56
parenta4ee9679c6191748a377816c7fba2523a48ab3b7
Proper fix for compiler warnings by adding const to the _get functions
(thanks k-s).
Fix formatting & remove some whitespace.

NB: Please take notice, do not format if statements like this:
      if (val && !val2).
    You will get spanked...hard :P
    Proper if formatting should be:
      if ((val) && (!val2))
    This avoids potential evaluation errors (as was recently seen in
    ecore_con).

SVN revision: 49111
src/edje_externals/elm_fileselector_button.c
src/lib/Elementary.h.in
src/lib/elc_fileselector_button.c