Aryeh Gregor
|
f2d701a18c
|
Bug 802995 - Missing null check in nsTextServicesDocument::DeleteSelection; r=ehsan
|
2012-10-25 14:36:23 +02:00 |
|
Ehsan Akhgari
|
db466de1ae
|
Bug 791907 - Remove prtypes.h #includes in editor/; r=jrmuizel
--HG--
extra : rebase_source : 93c2e11edeaa2f7275302a2c7499aa09c330da14
|
2012-09-17 22:58:51 -04:00 |
|
Ehsan Akhgari
|
e368dc9c85
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
|
Mike Hommey
|
70d7c821af
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
|
Aryeh Gregor
|
c81630fddb
|
Bug 777292 - Convert incorrect conversions to nsresult and fix named constants; r=ehsan
|
2012-07-27 16:59:29 +03:00 |
|
Aryeh Gregor
|
d0ad5a7d0c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Aryeh Gregor
|
dde10d9130
|
Bug 772807 - Clean up editor/ includes with include-what-you-use; r=ehsan
|
2012-07-13 09:33:42 +03:00 |
|
Aryeh Gregor
|
acf1c05549
|
Bug 763283 part 2 - Use nsINode::AsContent() in editor/; r=ehsan
|
2012-06-10 15:39:21 +03:00 |
|
Ms2ger
|
3c70068c94
|
Bug 756756 - Cleanup nsTextServicesDocument::GetCollapsedSelection; r=ehsan
|
2012-06-06 09:36:23 +02:00 |
|
Gervase Markham
|
82ff7027aa
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Aryeh Gregor
|
9684492a4a
|
Bug 590640 part 5 - Delete empty wrappers when we delete the selection; r=ehsan
|
2012-05-10 17:54:33 +03:00 |
|
Ms2ger
|
59b8749f68
|
Bug 751328 - Use nsINode::GetChildCount() in nsTextServicesDocument::CreateDocumentContentRootToNodeOffsetRange; r=ehsan
|
2012-05-05 11:00:06 +02:00 |
|
Ms2ger
|
bafe82f987
|
Bug 750073 - Use nsContentUtils::WordBreaker() in nsTextServicesDocument::FindWordBounds; r=ehsan
|
2012-05-05 11:00:05 +02:00 |
|
Aryeh Gregor
|
5ac7ab11b0
|
Bug 279330 part 1 - Remove erroneous NS_ERRORs; r=ehsan
|
2012-04-17 13:18:08 +03:00 |
|
Jacob Holzinger
|
6a62cb6a9b
|
Bug 696242 - Convert NS_RegisterStaticAtoms and nsCSSScanner::ReportUnexpectedParams to take an array-reference rather than a pointer and length, making it impossible to pass a pointer/length that are inconsistent. r=jwalden
--HG--
extra : rebase_source : 882b5b4d500b1fa242c0a3cfa3084e4171cbaa9d
|
2012-03-08 18:22:57 -08:00 |
|
Daniel Holbert
|
2e30860493
|
Bug 458167 patch 6: s/it's/its/ in comments within editor. r=ehsan
|
2012-02-15 01:18:24 -08:00 |
|
David Zbarsky
|
1cbfbebabd
|
Bug 682611 - Part 3: Remove ns(I)RangeUtils; r=smaug
|
2012-01-28 16:42:14 +01:00 |
|
Ms2ger
|
f97dbc4ba1
|
Bug 717370 - Cleanup range-using and nearby code in editor; r=smaug+ehsan
|
2012-01-15 09:13:12 +01:00 |
|
Ms2ger
|
5d0b145094
|
Bug 716630 - Kill editor's warnings; r=ehsan
|
2012-01-11 09:22:16 +01:00 |
|
David Zbarsky
|
e38d101da0
|
Bug 682611 - Part 2: Remove nsIRange; r=smaug
|
2012-01-10 15:19:54 +01:00 |
|
David Zbarsky
|
36d49f44a6
|
Bug 682611 - Part 1: Merge nsIDOMRange and nsIDOMNSRange; r=Ms2ger r=smaug
|
2012-01-10 15:19:54 +01:00 |
|
Ehsan Akhgari
|
92064e6d3f
|
Bug 690892 - Replace PR_TRUE/PR_FALSE with true/false on mozilla-central; rs=dbaron
Landing on a CLOSED TREE
|
2011-10-17 10:59:28 -04:00 |
|
Jeff Walden
|
b5e57820bf
|
Bug 693469 - Implement mozilla::ArrayLength and mozilla::ArrayEnd, and replace uses of NS_ARRAY_LENGTH whenever possible. (Exceptions: assigning to static initializers, use in static assertions, as template parameters, etc. These will go away when the relevant compilers have C++11 constexpr support.) r=cjones
--HG--
extra : rebase_source : b4bae9a0f85abf2feb828609b50e756916b99a6f
|
2011-10-10 22:50:08 -07:00 |
|
Jeff Walden
|
d0532c3e95
|
Back out everything since 5435ee09cf7b. Tinderbox compilers hate me. r=epic-fail
|
2011-10-12 12:21:53 -07:00 |
|
Jeff Walden
|
0f30b277bf
|
Bug 639469 - Implement mozilla::ArrayLength and mozilla::ArrayEnd, and replace uses of NS_ARRAY_LENGTH whenever possible. r=cjones
--HG--
extra : rebase_source : 860a8271bf7e51cde358f2a4185c410de1fc2960
|
2011-10-10 22:50:08 -07:00 |
|
Michael Wu
|
d2b70213ac
|
Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones
--HG--
rename : tools/trace-malloc/bloatblame.c => tools/trace-malloc/bloatblame.cpp
|
2011-09-28 23:19:26 -07:00 |
|
Jonas Sicking
|
fd28a5666a
|
Bug 659539 Part 4: Use nsINode::NodeType where possible. r=bz
|
2011-06-14 00:56:50 -07:00 |
|
Ed Morley
|
8aaddd0334
|
Bug 659621 - Remove EXTRA_DSO_LIBS, EXTRA_DSO_LDOPTS, OS_LIBS from makefiles containing LIBXUL_LIBRARY = 1, now that libxul is always built; r=ted
|
2011-06-12 03:49:00 -04:00 |
|
Ed Morley
|
97cc9c4eea
|
Bug 655756 - Remove final XP_MAC remnants; r=josh
|
2011-05-10 20:24:48 +02:00 |
|
Ms2ger
|
83a3dc5087
|
Bug 605177 - Fix a number of build warnings in editor/; r=ehsan a=bsmedberg
|
2010-11-04 16:44:46 -04:00 |
|
Ehsan Akhgari
|
7883671dc5
|
Bug 605138 - Scripts from topix.net apparently causing page to scroll down when opening; r=roc a=blocking-final+
|
2010-10-21 16:56:20 -04:00 |
|
Ehsan Akhgari
|
61405ab366
|
Bug 528368 - crash during spell check [@ nsTextServicesDocument::IsBlockNode(nsIContent*)] r=roc a=vlad
--HG--
extra : rebase_source : 4a06a8b23706cba1c0d1614fbf0ee3ea773bea1c
|
2010-08-25 01:44:19 -04:00 |
|
Ehsan Akhgari
|
a98243d830
|
Bug 572618 - Make debugging the editor easier - Part 4: multiline version of part 1; r=roc
|
2010-06-17 16:44:35 -04:00 |
|
Ehsan Akhgari
|
9f32e5a757
|
Bug 572618 - Make debugging the editor easier - Part 3: multiline version of part 2; r=roc
|
2010-06-17 16:40:48 -04:00 |
|
Ehsan Akhgari
|
f2cdabf2ec
|
Bug 572618 - Make debugging the editor easier - Part 1: Replace all if(NS_FAILED) checks with NS_ENSURE_SUCCESS; r=roc
|
2010-06-17 15:27:24 -04:00 |
|
Josh Matthews
|
4381d3ba7e
|
Bug 566414 - Signed/unsigned comparison warnings in editor; r=ehsan
|
2010-05-17 15:30:15 -04:00 |
|
Ehsan Akhgari
|
08c3c2fb3f
|
Bug 570350 - Crash [@ nsTextServicesDocument::NodeHasOffsetEntry(nsTArray<OffsetEntry*>*, nsIDOMNode*, int*, int*) ] when enabling/disabling the spell checker; r=roc
--HG--
extra : rebase_source : 8e8815dc92f936545305345b7fcf20eba4f4c6db
|
2010-06-08 00:20:23 -04:00 |
|
Ehsan Akhgari
|
ccf6247cb3
|
Bug 569504 - Fix the spell checker leaking windows and documents; r=roc
|
2010-06-02 14:33:47 -04:00 |
|
Craig Topper
|
25d5518e18
|
Bug 557416: Remove unnecessary includes and forward declarations of nsIPresShell. r=roc
|
2010-04-10 16:09:38 -04:00 |
|
Jonas Sicking
|
c24e5442a9
|
Bug 534136 Part 1: Make atoms keep a pointer to an nsStringBuffer rather than storing the data inline. r=bsmedberg
|
2010-03-08 07:44:59 -08:00 |
|
Benjamin Smedberg
|
ba372f3a4c
|
Followup to bug 398573 - remove REQUIRES from the tree since it is no longer used... automatically generated patch, rs=ted
|
2009-08-25 08:59:31 -07:00 |
|
Hashem Masoud
|
b71a1a1cfa
|
Bug 489502 - Replace NS_ASSERTION(0, ...) by NS_ERROR(...) in mozilla-central; r=benjamin
|
2009-08-14 16:09:00 +02:00 |
|
Arpad Borsos
|
650695050a
|
Bug 474369 - get rid of nsVoidArray, editor part; r=neil
|
2009-04-22 10:43:15 +02:00 |
|
Fred Jendrzejewski
|
f60688af65
|
Fix for bug 457104 (nsTextServicesDocument::FirstSelectedBlock dead?). r/sr=peterv.
--HG--
extra : rebase_source : 73e620aade6618aa90cebe0784754a68d5479a6d
|
2009-04-08 14:59:06 +02:00 |
|
Boris Zbarsky
|
081b4b02e7
|
Bug 486547 part 1. Switch nsTypedSelection to storing nsIRange, not nsIDOMRange, objects. r+sr=smaug
|
2009-04-06 13:17:37 -04:00 |
|
Olli Pettay
|
3cba110fca
|
bug 302775 - extractContents doesn't work if start and end node of a Range object is an attribute node, r=peterv, sr=sicking
|
2008-10-15 12:40:28 +03:00 |
|
masayuki@d-toybox.com
|
1c98c2e245
|
Bug 418470 Go to line in View Source broken (NS_ERROR_UNEXPECTED at nsISelectionController.scrollSelectionIntoView) (retry) r+sr=roc, a1.9b4=beltzner
|
2008-02-28 07:28:37 -08:00 |
|
masayuki@d-toybox.com
|
076b8bba8e
|
backing out the previous patch, becaused qm-centos5-01 dep unit test is orange
|
2008-02-28 05:59:25 -08:00 |
|
masayuki@d-toybox.com
|
600836e7ed
|
Bug 418470 Go to line in View Source broken (NS_ERROR_UNEXPECTED at nsISelectionController.scrollSelectionIntoView) r+sr=roc, a1.9b4=beltzner
|
2008-02-28 03:01:56 -08:00 |
|
jag@tty.nl
|
05cdb6aefe
|
Bug 73353: Clean up our MODULE/REQUIRES story. rs=dbaron, a=brendan
|
2008-02-18 00:50:04 -08:00 |
|