summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/dlg/TemplateScanner.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sd/source/ui/dlg/TemplateScanner.cxx b/sd/source/ui/dlg/TemplateScanner.cxx
index 96fe84698d0f..f125afacc280 100644
--- a/sd/source/ui/dlg/TemplateScanner.cxx
+++ b/sd/source/ui/dlg/TemplateScanner.cxx
@@ -65,7 +65,7 @@ public:
/** Use a heuristic based on the URL of a top-level template folder to
assign a priority that is used to sort the folders.
*/
-int Classify (const OUString&, const OUString& rsURL)
+int Classify (const OUString& rsURL)
{
int nPriority (0);
@@ -248,13 +248,12 @@ TemplateScanner::State TemplateScanner::GatherFolderList()
Reference<sdbc::XRow> xRow (mxFolderResultSet, UNO_QUERY);
if (xRow.is())
{
- OUString sTitle (xRow->getString (1));
OUString sTargetDir (xRow->getString (2));
OUString aId = xContentAccess->queryContentIdentifierString();
mpFolderDescriptors->insert(
FolderDescriptor(
- Classify(sTitle,sTargetDir),
+ Classify(sTargetDir),
aId,
mxFolderEnvironment));
}