summaryrefslogtreecommitdiff
path: root/qutebrowser/components/misccommands.py
diff options
context:
space:
mode:
Diffstat (limited to 'qutebrowser/components/misccommands.py')
-rw-r--r--qutebrowser/components/misccommands.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/qutebrowser/components/misccommands.py b/qutebrowser/components/misccommands.py
index c31ec5e6c..f1f6ccfc1 100644
--- a/qutebrowser/components/misccommands.py
+++ b/qutebrowser/components/misccommands.py
@@ -324,7 +324,7 @@ def debug_webaction(tab: apitypes.Tab, action: str, count: int = 1) -> None:
Available actions:
https://doc.qt.io/archives/qt-5.5/qwebpage.html#WebAction-enum (WebKit)
- https://doc.qt.io/qt-5/qwebenginepage.html#WebAction-enum (WebEngine)
+ https://doc.qt.io/qt-6/qwebenginepage.html#WebAction-enum (WebEngine)
Args:
action: The action to execute, e.g. MoveToNextChar.
@@ -365,7 +365,7 @@ def message_error(text: str, rich: bool = False) -> None:
Args:
text: The text to show.
rich: Render the given text as
- https://doc.qt.io/qt-5/richtext-html-subset.html[Qt Rich Text].
+ https://doc.qt.io/qt-6/richtext-html-subset.html[Qt Rich Text].
"""
message.error(text, rich=rich)
@@ -379,7 +379,7 @@ def message_info(text: str, count: int = 1, rich: bool = False) -> None:
text: The text to show.
count: How many times to show the message.
rich: Render the given text as
- https://doc.qt.io/qt-5/richtext-html-subset.html[Qt Rich Text].
+ https://doc.qt.io/qt-6/richtext-html-subset.html[Qt Rich Text].
"""
for _ in range(count):
message.info(text, rich=rich)
@@ -392,7 +392,7 @@ def message_warning(text: str, rich: bool = False) -> None:
Args:
text: The text to show.
rich: Render the given text as
- https://doc.qt.io/qt-5/richtext-html-subset.html[Qt Rich Text].
+ https://doc.qt.io/qt-6/richtext-html-subset.html[Qt Rich Text].
"""
message.warning(text, rich=rich)