jules
|
2af7585fc2
|
spelling fixes
|
2013-06-15 14:57:36 +01:00 |
|
jules
|
03c2801f3f
|
Copyright header update in all module files. juce_core modules are now ISC licensed. All other modules are GPLv2/3/AGPLv3
|
2013-06-13 13:17:12 +01:00 |
|
jules
|
c7506df13f
|
Changed some pass-by-references to pass-by-value to improve compiler optimisation.
|
2013-05-22 23:05:53 -06:00 |
|
jules
|
14cc8bf3c5
|
Changed ImageCache purging method. Added a PropertyPanel::getTotalContentHeight() method.
|
2013-04-15 12:21:22 +01:00 |
|
jules
|
c8e09aba67
|
Added an extra method to ListenerList. Handled zero-length binary data in var class.
|
2013-04-14 10:14:24 +01:00 |
|
jules
|
52b638ff40
|
Misc cleanups.
|
2013-04-09 19:42:47 +01:00 |
|
jules
|
868bee86d0
|
Support for storing binary vars in XML via NamedValueSet/ValueTree.
|
2013-04-09 14:46:54 +01:00 |
|
jules
|
dde56bab6a
|
Added a binary data type to the var class.
|
2013-04-09 12:11:06 +01:00 |
|
jules
|
b2e8db097a
|
Tweak to ScopedValueSetter to keep VS2012 happy.
|
2013-03-22 11:44:40 +00:00 |
|
jules
|
6b7f0609bf
|
Minor clean-ups.
|
2013-03-17 13:59:03 +00:00 |
|
jules
|
cb24acca97
|
Added a minimum-size template parameter to Array.
|
2013-03-11 15:26:05 +00:00 |
|
jules
|
bfd9350bed
|
Changed some types from int to size_t where appropriate. Fixed a CoreMidi build problem in 64-bit mode.
|
2013-02-24 15:49:06 +00:00 |
|
jules
|
f5175b3c2d
|
Minor addition to HashMap
|
2013-02-18 16:46:29 +00:00 |
|
jules
|
213b5f87ff
|
Minor clean-ups.
|
2013-01-31 12:49:56 +00:00 |
|
jules
|
e543949bda
|
Minor clean-ups.
|
2013-01-05 20:07:22 +00:00 |
|
jules
|
7a3453f48b
|
Minor clean-ups.
|
2012-12-31 19:10:54 +00:00 |
|
jules
|
5d35a31f2e
|
Minor clean-ups and documentation fixes.
|
2012-12-20 21:26:12 +00:00 |
|
jules
|
0ceeb573d8
|
Minor changes to avoid pedantic compiler warnings.
|
2012-12-04 21:39:15 +00:00 |
|
jules
|
48ffccb8b8
|
Minor cleanups.
|
2012-11-08 16:35:56 +00:00 |
|
jules
|
f07139f748
|
Minor clean-ups.
|
2012-10-19 15:54:15 +01:00 |
|
jules
|
89d5e19fca
|
misc cleanups.
|
2012-10-18 09:50:10 +01:00 |
|
jules
|
05f32e3de6
|
Added a typedef DynamicObject::Ptr
|
2012-10-17 18:57:09 +01:00 |
|
jules
|
310c063195
|
Fix to Array::removeAllInstanceOf.
|
2012-10-12 15:00:19 +01:00 |
|
jules
|
d0974a537d
|
Array: small documentation fix.
|
2012-10-07 10:53:19 +01:00 |
|
jules
|
6b1654e1d2
|
Fixed some more warnings.
|
2012-09-24 15:45:25 +01:00 |
|
jules
|
9a24aa8a20
|
Minor clean-ups.
|
2012-09-11 09:35:03 +01:00 |
|
jules
|
d9f0ac29b6
|
Fixed a few documentation typos. Tweaked positioning logic for CallOutBox.
|
2012-09-09 21:03:39 +01:00 |
|
jules
|
842d30fbfa
|
Minor tidying-up.
|
2012-09-04 11:38:16 +01:00 |
|
jules
|
9caac6d44e
|
New class: TextDiff
|
2012-08-15 18:39:33 +01:00 |
|
jules
|
8149502c8b
|
Made SortedSet::add() return a bool. Improvements to code editor indents.
|
2012-08-04 14:31:23 +01:00 |
|
jules
|
8a10be5c14
|
Subtle change to behaviour of SortedSet::add.
|
2012-08-01 12:57:44 +01:00 |
|
jules
|
fab78ea09e
|
Fixed a leak in OwnedArray.
|
2012-07-23 09:21:59 +01:00 |
|
jules
|
d4ae8f3d55
|
Minor optimisations. New method OwnedArray::insertArray(). Changed some CodeDocument inner class constructors to use references rather than pointers.
|
2012-07-23 07:54:23 +01:00 |
|
jules
|
deeab7f818
|
Minor tidying-up.
|
2012-07-10 13:40:11 +01:00 |
|
jules
|
591e89cd87
|
Replaced the badly-named method Array::removeValue() with two new methods: removeFirstMatchingValue() and removeAllInstancesOf(). If you call the old method anywhere, you can just replace any calls with removeFirstMatchingValue(), which does the same job, but whose name makes it clear that not all instances of the value will be removed.
|
2012-07-07 21:09:10 +01:00 |
|
jules
|
165bed1fbf
|
Tidied up SortedSet.
|
2012-06-26 15:08:01 +01:00 |
|
jules
|
c2ba912d27
|
Refactored SortedSet to use an Array internally, fixing a problem where it didn't correctly delete its elements.
|
2012-06-23 17:43:28 +01:00 |
|
jules
|
0425df49d7
|
Rolled back an array comparator change which could cause unexpected problems with ScopedPointers.
|
2012-06-21 15:13:58 +01:00 |
|
jules
|
9821174709
|
Template changes to some array sort methods.
|
2012-06-21 09:29:07 +01:00 |
|
jules
|
dd7f4cbe40
|
Added standard iterators to StringArray, and a SortedSet swap function.
|
2012-06-17 16:13:20 +01:00 |
|
jules
|
8419bebe4c
|
Minor HashMap clean-up.
|
2012-06-15 17:23:42 +01:00 |
|
jules
|
ed63dc104c
|
Fixes for SortedSet.
|
2012-06-14 08:39:07 +01:00 |
|
jules
|
40929e5db9
|
Tidied up ReadWriteLock a bit, and optimised Array to reduce allocation frequency when working with small numbers of items.
|
2012-05-21 12:07:03 +01:00 |
|
jules
|
4f590f036d
|
Added better constructors for AudioSourceChannelInfo.
|
2012-04-28 11:37:05 +01:00 |
|
jules
|
1f95f54089
|
Purged some warnings.
|
2012-04-10 10:29:14 +01:00 |
|
jules
|
11659678d6
|
WindowsMediaFormat fix. ReferenceCountedArray::indexOfSorted() method.
|
2012-04-05 14:01:00 +01:00 |
|
jules
|
4e1a9f6526
|
better double comparisons for var. Fix for VS2005/VS2010 RTAS exporting. Minor GL cleanups and project updates.
|
2012-03-31 16:41:05 +01:00 |
|
jules
|
56bbab1537
|
(automated whitespace clean-up)
|
2012-03-20 16:00:06 +00:00 |
|
jules
|
22c72de736
|
VC2011 compiler tweaks. ReferenceCountedArray fix.
|
2012-03-01 09:26:40 +00:00 |
|
jules
|
9c719306c9
|
Added -ldl to linux builds. Tidied up a few warnings.
|
2012-02-28 19:51:22 +00:00 |
|