diff options
Diffstat (limited to 'embed/mozilla/GeckoPrintSession.cpp')
-rw-r--r-- | embed/mozilla/GeckoPrintSession.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/mozilla/GeckoPrintSession.cpp b/embed/mozilla/GeckoPrintSession.cpp index edfd64d9c..ddf968283 100644 --- a/embed/mozilla/GeckoPrintSession.cpp +++ b/embed/mozilla/GeckoPrintSession.cpp @@ -161,7 +161,7 @@ GeckoPrintSession::FromSettings (nsIPrintSettings *aSettings) /* this is ok since the caller holds a ref to the settings which hold a ref to the session */ nsIPrintSession *sessionPtr = session.get(); - return NS_STATIC_CAST (GeckoPrintSession*, sessionPtr); + return static_cast<GeckoPrintSession*>(sessionPtr); } /* static functions */ |