Skip to content

Commit 2dca0ea

Browse files
committed
fix URL capitalization
1 parent b6fc3b5 commit 2dca0ea

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Source/WebCore/platform/qt/LocalizedStringsQt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ String contextMenuItemTagCopyImageToClipboard()
118118
return QCoreApplication::translate("QWebPage", "Copy Image", "Copy Link context menu item");
119119
}
120120

121-
String contextMenuItemTagCopyImageUrlToClipboard()
121+
String contextMenuItemTagCopyImageURLToClipboard()
122122
{
123123
return QCoreApplication::translate("QWebPage", "Copy Image Address", "Copy Image Address menu item");
124124
}

Source/WebKitLegacy/qt/WebCoreSupport/QWebPageAdapter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1256,7 +1256,7 @@ QString QWebPageAdapter::contextMenuItemTagForAction(QWebPageAdapter::MenuAction
12561256
case CopyImageToClipboard:
12571257
return contextMenuItemTagCopyImageToClipboard();
12581258
case CopyImageUrlToClipboard:
1259-
return contextMenuItemTagCopyImageUrlToClipboard();
1259+
return contextMenuItemTagCopyImageURLToClipboard();
12601260

12611261
case Cut:
12621262
return contextMenuItemTagCut();

Source/WebKitLegacy/qt/WebCoreSupport/QWebPageAdapter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class QWEBKIT_EXPORT QWebPageAdapter {
7979
F(OpenImageInNewWindow, WebCore::ContextMenuItemTagOpenImageInNewWindow) SEPARATOR \
8080
F(DownloadImageToDisk, WebCore::ContextMenuItemTagDownloadImageToDisk) SEPARATOR \
8181
F(CopyImageToClipboard, WebCore::ContextMenuItemTagCopyImageToClipboard) SEPARATOR \
82-
F(CopyImageUrlToClipboard, WebCore::ContextMenuItemTagCopyImageUrlToClipboard) SEPARATOR \
82+
F(CopyImageUrlToClipboard, WebCore::ContextMenuItemTagCopyImageURLToClipboard) SEPARATOR \
8383
F(OpenFrameInNewWindow, WebCore::ContextMenuItemTagOpenFrameInNewWindow) SEPARATOR \
8484
F(Copy, WebCore::ContextMenuItemTagCopy) SEPARATOR \
8585
F(Back, WebCore::ContextMenuItemTagGoBack) SEPARATOR \

0 commit comments

Comments
 (0)