Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Plasma
KInfoCenter
Commits
987f53e0
Commit
987f53e0
authored
Sep 26, 2020
by
Yuri Chornoivan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix minor typos
parent
38637c16
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
Modules/about-distro/src/Entry.cpp
Modules/about-distro/src/Entry.cpp
+1
-1
Modules/about-distro/src/GPUEntry.cpp
Modules/about-distro/src/GPUEntry.cpp
+1
-1
Modules/about-distro/src/Module.cpp
Modules/about-distro/src/Module.cpp
+2
-2
Modules/nics/networkmodel.cpp
Modules/nics/networkmodel.cpp
+1
-1
Modules/pci/kpci.cpp
Modules/pci/kpci.cpp
+2
-2
Modules/pci/kpci_private.h
Modules/pci/kpci_private.h
+1
-1
Modules/samba/smbmountmodel.h
Modules/samba/smbmountmodel.h
+1
-1
No files found.
Modules/about-distro/src/Entry.cpp
View file @
987f53e0
...
...
@@ -24,7 +24,7 @@ bool Entry::isValid() const
QString
Entry
::
diagnosticLine
(
Language
language
)
const
{
// FIXME: This isn't really working for right-to-left
// The answer probably is in un
c
ide control characters, but
// The answer probably is in uni
co
de control characters, but
// didn't work when tried.
// Essentially what needs to happen is that the label should be RTL
// that is to say the colon should be on the left, BUT englishy words
...
...
Modules/about-distro/src/GPUEntry.cpp
View file @
987f53e0
...
...
@@ -35,7 +35,7 @@ GPUEntry::GPUEntry()
// strip that. Elide would probably be nicer, a bit meh with QWidgets though.
m_value
=
m_value
.
mid
(
0
,
m_value
.
indexOf
(
'('
));
// Leads to trailing space in my case, don't know whether that is happening
// everyhere, though. Thus removing trailing spaces separately.
// every
w
here, though. Thus removing trailing spaces separately.
m_value
=
m_value
.
trimmed
();
context
.
doneCurrent
();
}
else
{
...
...
Modules/about-distro/src/Module.cpp
View file @
987f53e0
...
...
@@ -71,7 +71,7 @@ Module::Module(QWidget *parent, const QVariantList &args) :
// https://bugs.kde.org/show_bug.cgi?id=366158
// When a KCM loads fast enough do a blocking load via the constructor.
// Otherwise there is a not
c
iable rendering gap where dummy/no data is
// Otherwise there is a noti
c
able rendering gap where dummy/no data is
// shown. Makes it look bad.
load
();
}
...
...
@@ -84,7 +84,7 @@ Module::~Module()
void
Module
::
load
()
{
// load is called lazly, but also from the ctor -> prevent double init.
// load is called laz
i
ly, but also from the ctor -> prevent double init.
if
(
!
m_entries
.
empty
())
{
return
;
}
...
...
Modules/nics/networkmodel.cpp
View file @
987f53e0
...
...
@@ -280,7 +280,7 @@ QString flags_tos(unsigned int flags)
if
(
tmp
.
length
())
{
tmp
+=
QLatin1String
(
", "
);
}
tmp
+=
i18nc
(
"@item:intable Netork type"
,
"Broadcast"
);
tmp
+=
i18nc
(
"@item:intable Net
w
ork type"
,
"Broadcast"
);
}
if
(
flags
&
IFF_MULTICAST
)
{
...
...
Modules/pci/kpci.cpp
View file @
987f53e0
...
...
@@ -752,7 +752,7 @@ bool GetInfo_PCIUtils(QTreeWidget* tree) {
//adding revision
after
=
create
(
DeviceName
,
i18n
(
"Revision"
),
QString
::
asprintf
(
"0x%02X"
,
info
.
cooked
.
revision
));
//adding vendor, device, and subvendor/sudevice info
//adding vendor, device, and subvendor/su
b
device info
after
=
addVendor
(
DeviceName
,
after
,
&
info
,
PCIAccess
);
//adding control
after
=
addControl
(
DeviceName
,
after
,
&
info
);
...
...
@@ -773,7 +773,7 @@ bool GetInfo_PCIUtils(QTreeWidget* tree) {
after
=
addBus
(
DeviceName
,
after
,
&
info
);
//adding secondary status
after
=
addSecStatus
(
DeviceName
,
after
,
&
info
);
//adding resour
e
ce behind bridge
//adding resource behind bridge
after
=
addBridgeBehind
(
DeviceName
,
after
,
&
info
);
//adding bridge control
after
=
addBridgeControl
(
DeviceName
,
after
,
&
info
);
...
...
Modules/pci/kpci_private.h
View file @
987f53e0
/* Retrive information about PCI subsystem through libpci library from
/* Retri
e
ve information about PCI subsystem through libpci library from
pciutils package. This should be possible on Linux, BSD and AIX.
Device classes, subclasses and programming interfaces are hardcoded
...
...
Modules/samba/smbmountmodel.h
View file @
987f53e0
...
...
@@ -11,7 +11,7 @@
#include <Solid/Device>
/**
* Model of cifs mount ent
i
res. Implementing properties
* Model of cifs mount entr
i
es. Implementing properties
* as columns rather than roles.
*/
class
SmbMountModel
:
public
QAbstractListModel
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment