1. 26 Tem, 2011 12 kayıt (commit)
  2. 25 Tem, 2011 19 kayıt (commit)
  3. 24 Tem, 2011 5 kayıt (commit)
  4. 23 Tem, 2011 4 kayıt (commit)
    • Tor Lillqvist's avatar
      More iOS baby steps · 9cd2558f
      Tor Lillqvist yazdı
      9cd2558f
    • Joseph Powers's avatar
      unusedcode.easy: AlphaMask · eacd6b0e
      Joseph Powers yazdı
      eacd6b0e
    • Joseph Powers's avatar
      unusedcode.easy: svxIconChoiceCtrl_Impl · 18d18c8a
      Joseph Powers yazdı
      Doing List cleanup, I ran into SaveSelection() and decided to delete it.
      While I was in the class, I went ahead and cleanup them all up.
      18d18c8a
    • Tor Lillqvist's avatar
      Bin unused symbolic constants · 8622956e
      Tor Lillqvist yazdı
      Is it really good Mac style programming practice to define your own
      non-namespaced kThisAndThat constants that look like they might be
      defined by some platform API?
      
      And seriously, defining symbolic constants for small integers like
      const kOneBit = 1 ?  These were not used, but if they had been would
      it really be cleaner to use the identifier "kOneBit" instead of a
      plain number 1?
      
      Cases where small integers have magic meaning and don't stand for just
      themselves are obviously different; there it makes sense to use
      symbolic names and not the integer values. But in the case of things
      like kOneBit that is not the case, as one might guesss from the name
      it was supposed to be used to indicate a bit depth of one. Etc.
      8622956e