Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-08-08 | Remove unused ComboBox::SetSeparatorPos(). | Jan Holesovsky | |
2011-08-05 | Remove an unneeded forward reference to class List | Joseph Powers | |
2011-08-05 | fix a crash seen debugging dodgy dbaccess+mailmerge stuff | Caolán McNamara | |
2011-08-05 | callcatcher: unused methods | Caolán McNamara | |
2011-08-05 | Emacs modeline compatible with vim's one | Takeshi Abe | |
2011-08-04 | and get this building under windows | Caolán McNamara | |
2011-08-04 | callcatcher: remove unused methods | Caolán McNamara | |
2011-08-04 | LookupKeysymInDefaultGroup unused | Caolán McNamara | |
2011-08-03 | unusedcode.easy: Removed some members. | Joseph Powers | |
2011-08-03 | Anything to do with position in MenuItemList should be size_t | Joseph Powers | |
The old code was mixing sal_uInt16 & sal_uLong all over the place. Plus, MenuItemList is now a std::vector<> which uses size_t as index variables. | |||
2011-08-02 | unusedcode.easy: Removed unused code from Menu | Joseph Powers | |
Note: ImplSelectWithStart() was listed as unused; however, it's used on Mac OS X. I added a comment stating that we use it, so hopefully someone else doesn't remove it later without checking first. | |||
2011-08-02 | Modify MenuItemList so it uses std::vector<> instead of List | Joseph Powers | |
I also removed GetCharClass() since it wasn't used and it was in the unusedcode.easy list. I don't see any changes in the menus (Mac OS X). | |||
2011-08-03 | callcatcher: remove unused methods | Thomas Arnhold | |
2011-08-02 | callcatcher: remove unused methods | Thomas Arnhold | |
2011-08-02 | Resolves: rhbz#693265 fix crash from unhandled exception | Caolán McNamara | |
2011-08-02 | Remove an unneeded forward declarion of class List. | Joseph Powers | |
2011-08-02 | add vertical layout as a distinguishing font layout attribute | Caolán McNamara | |
2011-07-31 | callcatcher: remove unused code | Caolán McNamara | |
2011-07-31 | callcatcher: remove unused FillPolyPolygon | Caolán McNamara | |
2011-07-31 | More iOS hacking, intermediate commit, certainly not working | Tor Lillqvist | |
2011-07-30 | Add consistent Emacs and vim mode lines | Tor Lillqvist | |
2011-07-29 | callcatcher: remove unused methods | Thomas Arnhold | |
2011-07-28 | callcatcher: ditch various unused methods | Caolán McNamara | |
2011-07-27 | ByteString::CreateFromInt32->rtl::OString::valueOf | Caolán McNamara | |
2011-07-26 | callcatcher: remove unused methods | Thomas Arnhold | |
2011-07-26 | callcatcher: bring SplitWindow::GetItemWindow back | Thomas Arnhold | |
Needed by reportdesign/source/ui/report/DesignView.cxx | |||
2011-07-26 | callcatcher: actually remove the right one | Thomas Arnhold | |
2011-07-26 | callcatcher: clean up ImplImageBmp | Thomas Arnhold | |
2011-07-26 | callcatcher: clean Window | Thomas Arnhold | |
2011-07-26 | callcatcher: Remove JavaChild | Thomas Arnhold | |
2011-07-26 | callcatcher: clean up SplitWindow | Thomas Arnhold | |
2011-07-26 | bring some order into Libray_vcl | Bjoern Michaelsen | |
2011-07-26 | join GUIBASE aqua conditionals in Library_vcl | Bjoern Michaelsen | |
2011-07-26 | join WNT conditionals in Library_vcl | Bjoern Michaelsen | |
2011-07-26 | use uikit, corefoundation, cocoa, carbon, quicktime externals | Bjoern Michaelsen | |
2011-07-26 | use gtk and gthread externals in vclplug_gtk, add FIXME for dbus | Bjoern Michaelsen | |
2011-07-26 | use configured freetype and fontconfig flags, at end of link link | Caolán McNamara | |
2011-07-26 | use new link mechanism and drop this horrible mess | Caolán McNamara | |
2011-07-26 | callcatcher: remove unused methods | Thomas Arnhold | |
2011-07-26 | Fix unintendet re-add of JobSetup::GetValue | Thomas Arnhold | |
2011-07-25 | Usage of gb_Library_set_componentfile has apparently changed, so adapt | Tor Lillqvist | |
2011-07-25 | Use gb_OBJCXXFLAGS for iOS, too | Tor Lillqvist | |
2011-07-25 | update gnumake pieces for system cairo | Michael Meeks | |
2011-07-25 | Remove vendor specific properties handling. | Thomas Arnhold | |
This needs some testing on other platforms! About SAL_PROPERTIES in OOo Environment documentation: "If set contains a bitfield activating various bug Xserver bug workarounds. Not very useful nowadays." | |||
2011-07-25 | callcatcher: remove unused methods | Thomas Arnhold | |
2011-07-25 | customtargets have grown another argument | Caolán McNamara | |
2011-07-24 | Merge branch 'master' into feature/gnumake4 | Bjoern Michaelsen | |
2011-07-24 | More iOS baby steps | Tor Lillqvist | |
2011-07-23 | unusedcode.easy: AlphaMask | Joseph Powers | |
2011-07-23 | Bin unused symbolic constants | Tor Lillqvist | |
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. |