Bug 1517241 - Fix yet another MSVC-only bustage.

This doesn't compile on MSVC for some reason:

```
nsCOMPtr<Foo> f;
RefPtr<Foo> b;

Foo* myFoo = f ? f : b;
```
This commit is contained in:
Emilio Cobos Álvarez 2019-01-03 19:27:37 +01:00
Родитель 000aedaf7d
Коммит c732de8adc
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -211,7 +211,7 @@ class nsPrintJob final : public nsIObserver,
void PageDone(nsresult aResult);
nsCOMPtr<mozilla::dom::Document> mDocument;
RefPtr<mozilla::dom::Document> mDocument;
nsCOMPtr<nsIDocumentViewerPrint> mDocViewerPrint;
nsWeakPtr mContainer;