summaryrefslogtreecommitdiff
path: root/src/gmdocument.h
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-07-28 17:47:23 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-07-28 17:47:23 +0300
commit56af1a99da603571df023f72dcb1dccd444f5aaf (patch)
treee404f4fa665056bc04ba1c4492ce118229e3a8a1 /src/gmdocument.h
parentd1b4d7ec00e83d9f57ad4507233db94ba036f120 (diff)
DocumentWidget: Don't repeat the hostname if visible
Diffstat (limited to 'src/gmdocument.h')
-rw-r--r--src/gmdocument.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gmdocument.h b/src/gmdocument.h
index a97af029..d834f9d6 100644
--- a/src/gmdocument.h
+++ b/src/gmdocument.h
@@ -10,10 +10,11 @@ iDeclareType(GmRun)
10typedef uint16_t iGmLinkId; 10typedef uint16_t iGmLinkId;
11 11
12enum iGmLinkFlags { 12enum iGmLinkFlags {
13 remote_GmLinkFlag = 0x1, 13 userFriendly_GmLinkFlag = 0x1,
14 http_GmLinkFlag = 0x2, 14 remote_GmLinkFlag = 0x2,
15 gopher_GmLinkFlag = 0x4, 15 http_GmLinkFlag = 0x4,
16 file_GmLinkFlag = 0x8, 16 gopher_GmLinkFlag = 0x8,
17 file_GmLinkFlag = 0x10,
17}; 18};
18 19
19struct Impl_GmRun { 20struct Impl_GmRun {