diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 17:34:52 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 17:34:52 +0000 |
commit | 79b6edcb6854989253021295e8d35ecfcf0a3874 (patch) | |
tree | e3bd6bcbf417d1ee66c0d36312f001e9aab41643 /vcl | |
parent | c8ed5991709725d7cade48a99a09cc26243f4b95 (diff) |
I missed a nullptr c++11ish
Change-Id: I048efbb816fc4f4e91eb3a80a16f3f82b52599e0
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/IconThemeInfo.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/IconThemeInfo.cxx b/vcl/source/app/IconThemeInfo.cxx index 69f0302b6909..89a1b4e75e6d 100644 --- a/vcl/source/app/IconThemeInfo.cxx +++ b/vcl/source/app/IconThemeInfo.cxx @@ -83,7 +83,7 @@ IconThemeInfo::UrlCanBeParsed(const OUString& url) return false; } - if (!fname.endsWithIgnoreAsciiCase(EXTENSION_FOR_ICON_PACKAGES, nullptr)) { + if (!fname.endsWithIgnoreAsciiCase(EXTENSION_FOR_ICON_PACKAGES)) { return false; } |