mirror of
https://github.com/parchlinux/calamares.git
synced 2025-07-01 19:35:36 -04:00
keyboard: Pass settings directly, not through GlobalStorage.
Pass the settings from keyboard.conf directly to the SetKeyboardLayoutJob rather than through GlobalStorage.
This commit is contained in:
parent
2fec6e3202
commit
86d51b4a9c
6 changed files with 29 additions and 16 deletions
|
@ -29,7 +29,9 @@ class SetKeyboardLayoutJob : public Calamares::Job
|
|||
public:
|
||||
SetKeyboardLayoutJob( const QString& model,
|
||||
const QString& layout,
|
||||
const QString& variant );
|
||||
const QString& variant,
|
||||
const QString& xOrgConfFileName,
|
||||
const QString& convertedKeymapPath );
|
||||
|
||||
QString prettyName() const override;
|
||||
Calamares::JobResult exec() override;
|
||||
|
@ -44,6 +46,8 @@ private:
|
|||
QString m_model;
|
||||
QString m_layout;
|
||||
QString m_variant;
|
||||
QString m_xOrgConfFileName;
|
||||
QString m_convertedKeymapPath;
|
||||
};
|
||||
|
||||
#endif /* SETKEYBOARDLAYOUTJOB_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue