Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
thunar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xfce
thunar
Commits
a78ad608
Commit
a78ad608
authored
14 years ago
by
Jannis Pohlmann
Browse files
Options
Downloads
Patches
Plain Diff
Paste files in the correct order (bug #6504).
parent
c7c9e0c4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
thunar/thunar-clipboard-manager.c
+15
-14
15 additions, 14 deletions
thunar/thunar-clipboard-manager.c
with
15 additions
and
14 deletions
thunar/thunar-clipboard-manager.c
+
15
−
14
View file @
a78ad608
/*
$Id$
*/
/*
vi:set et ai sw=2 sts=2 ts=2:
*/
/*-
* Copyright (c) 2005-2006 Benedikt Meurer <benny@xfce.org>
* Copyright (c) 2009 Jannis Pohlmann <jannis@xfce.org>
* Copyright (c) 2009
-2011
Jannis Pohlmann <jannis@xfce.org>
*
* This program is free software; you can redistribute it and/or
modify it
* under the terms of the GNU General Public License as
published by the Free
* Software Foundation; either version 2 of
the License, or (at your option)
* any later version.
* This program is free software; you can redistribute it and/or
*
modify it
under the terms of the GNU General Public License as
*
published by the Free
Software Foundation; either version 2 of
*
the License, or (at your option)
any later version.
*
* This program is distributed in the hope that it will be useful,
but WITHOUT
* ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for
* more details.
* This program is distributed in the hope that it will be useful,
*
but WITHOUT
ANY WARRANTY; without even the implied warranty of
*
MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the
*
GNU General Public License for
more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
...
...
@@ -467,7 +468,7 @@ thunar_clipboard_manager_transfer_files (ThunarClipboardManager *manager,
manager
->
files_cutted
=
!
copy
;
/* setup the new file list */
for
(
lp
=
files
,
manager
->
files
=
NULL
;
lp
!=
NULL
;
lp
=
lp
->
next
)
for
(
lp
=
g_list_last
(
files
)
,
manager
->
files
=
NULL
;
lp
!=
NULL
;
lp
=
lp
->
prev
)
{
file
=
g_object_ref
(
G_OBJECT
(
lp
->
data
));
manager
->
files
=
g_list_prepend
(
manager
->
files
,
file
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment