Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Krita
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mathias Wein
Krita
Commits
063b46ff
Commit
063b46ff
authored
Apr 02, 2007
by
Daniel Laidig
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adapt to API changes of KCharSelect.
svn path=/trunk/koffice/; revision=649581
parent
0525b371
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
libs/kofficeui/KoCharSelectDia.cpp
libs/kofficeui/KoCharSelectDia.cpp
+3
-1
libs/koproperty/editors/symbolcombo.cpp
libs/koproperty/editors/symbolcombo.cpp
+1
-1
No files found.
libs/kofficeui/KoCharSelectDia.cpp
View file @
063b46ff
...
...
@@ -73,7 +73,9 @@ void KoCharSelectDia::initDialog(const QChar &_chr, const QString &_font, bool /
grid
->
setMargin
(
0
);
grid
->
setSpacing
(
KDialog
::
spacingHint
());
charSelect
=
new
KCharSelect
(
page
,
_chr
,
QFont
(
_font
)
);
charSelect
=
new
KCharSelect
(
page
);
charSelect
->
setCurrentChar
(
_chr
);
charSelect
->
setCurrentFont
(
QFont
(
_font
)
);
connect
(
charSelect
,
SIGNAL
(
charSelected
()),
this
,
SLOT
(
slotDoubleClicked
()));
charSelect
->
resize
(
charSelect
->
sizeHint
()
);
// charSelect->enableFontCombo( true );
...
...
libs/koproperty/editors/symbolcombo.cpp
View file @
063b46ff
...
...
@@ -108,7 +108,7 @@ SymbolCombo::selectChar()
dialog
.
setMainWidget
(
select
);
if
(
!
(
m_edit
->
text
().
isNull
()))
select
->
setChar
(
m_edit
->
text
().
at
(
0
));
select
->
setC
urrentC
har
(
m_edit
->
text
().
at
(
0
));
if
(
dialog
.
exec
()
==
QDialog
::
Accepted
)
m_edit
->
setText
(
select
->
currentChar
());
...
...
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