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
Tusooa Zhu
Krita
Commits
82e616d0
Commit
82e616d0
authored
Apr 01, 2007
by
Thomas Friedrichsmeier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjustments for 648781 (buttonCancel parameter in KMessageBox::*cancel*)
svn path=/trunk/koffice/; revision=648783
parent
6b16850a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
0 deletions
+8
-0
krita/plugins/viewplugins/colorspaceconversion/colorspaceconversion.cc
.../viewplugins/colorspaceconversion/colorspaceconversion.cc
+2
-0
krita/ui/kis_filter_manager.cc
krita/ui/kis_filter_manager.cc
+2
-0
libs/kofficecore/KoDocumentInfoDlg.cpp
libs/kofficecore/KoDocumentInfoDlg.cpp
+2
-0
libs/kofficecore/KoMainWindow.cpp
libs/kofficecore/KoMainWindow.cpp
+2
-0
No files found.
krita/plugins/viewplugins/colorspaceconversion/colorspaceconversion.cc
View file @
82e616d0
...
...
@@ -96,6 +96,7 @@ void ColorSpaceConversion::slotImgColorSpaceConversion()
,
image
->
colorSpace
()
->
name
()),
i18n
(
"Colorspace Conversion"
),
KGuiItem
(
i18n
(
"Continue"
)),
KStandardGuiItem
::
cancel
(),
"lab16degradation"
)
!=
KMessageBox
::
Continue
)
return
;
}
...
...
@@ -133,6 +134,7 @@ void ColorSpaceConversion::slotLayerColorSpaceConversion()
,
dev
->
colorSpace
()
->
name
()),
i18n
(
"Colorspace Conversion"
),
KGuiItem
(
i18n
(
"Continue"
)),
KStandardGuiItem
::
cancel
(),
"lab16degradation"
)
!=
KMessageBox
::
Continue
)
return
;
}
...
...
krita/ui/kis_filter_manager.cc
View file @
82e616d0
...
...
@@ -414,6 +414,7 @@ void KisFilterManager::slotApplyFilter(int i)
,
dev
->
colorSpace
()
->
name
()),
i18n
(
"Filter Will Convert Your Layer Data"
),
KGuiItem
(
i18n
(
"Continue"
)),
KStandardGuiItem
::
cancel
(),
"lab16degradation"
)
!=
KMessageBox
::
Continue
)
return
;
}
...
...
@@ -424,6 +425,7 @@ void KisFilterManager::slotApplyFilter(int i)
,
dev
->
colorSpace
()
->
name
()),
i18n
(
"Filter Will Convert Your Layer Data"
),
KGuiItem
(
i18n
(
"Continue"
)),
KStandardGuiItem
::
cancel
(),
"rgba8degradation"
)
!=
KMessageBox
::
Continue
)
return
;
}
}
...
...
libs/kofficecore/KoDocumentInfoDlg.cpp
View file @
82e616d0
...
...
@@ -391,6 +391,7 @@ void KoDocumentInfoDlg::slotSaveEncryption()
"<p>Do you still want to decrypt the file?</qt>"
),
i18n
(
"Confirm Decrypt"
),
KGuiItem
(
i18n
(
"Decrypt"
)
),
KStandardGuiItem
::
cancel
(),
"DecryptConfirmation"
)
!=
KMessageBox
::
Continue
)
{
...
...
@@ -432,6 +433,7 @@ void KoDocumentInfoDlg::slotSaveEncryption()
"<p>Do you want to change the file to OASIS OpenDocument?</qt>"
,
QString
(
"<b>%1</b>"
).
arg
(
comment
)
),
i18n
(
"Change Filetype"
),
KGuiItem
(
i18n
(
"Change"
)
),
KStandardGuiItem
::
cancel
(),
"EncryptChangeFiletypeConfirmation"
)
!=
KMessageBox
::
Continue
)
{
return
;
...
...
libs/kofficecore/KoMainWindow.cpp
View file @
82e616d0
...
...
@@ -739,6 +739,7 @@ bool KoMainWindow::exportConfirmation( const QByteArray &outputFormat )
QString
(
"<b>%1</b>"
).
arg
(
comment
)
),
// in case we want to remove the bold later
i18n
(
"Confirm Save"
),
KStandardGuiItem
::
save
(),
KStandardGuiItem
::
cancel
(),
"NonNativeSaveConfirmation"
);
}
...
...
@@ -752,6 +753,7 @@ bool KoMainWindow::exportConfirmation( const QByteArray &outputFormat )
QString
(
"<b>%1</b>"
).
arg
(
comment
)
),
// in case we want to remove the bold later
i18n
(
"Confirm Export"
),
KGuiItem
(
i18n
(
"Export"
)),
KStandardGuiItem
::
cancel
(),
"NonNativeExportConfirmation"
// different to the one used for Save (above)
);
}
...
...
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