summaryrefslogtreecommitdiff
path: root/xmloff/source/chart/transporttypes.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-05-22 15:08:55 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-05-22 15:08:55 +0000
commitee134a776091974079dc5946e71d562d7b9f656c (patch)
treee132c2dd3b6f45ae6a06d617778e3e24c9c7b39a /xmloff/source/chart/transporttypes.cxx
parent44b186ad7df0bad1352f2ece8fc3d63268047c3c (diff)
INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED
2007/02/08 11:01:28 iha 1.1.2.2: resync m195 -> m202 2006/12/06 18:51:39 bm 1.1.2.1: #i64497# allow import and export to deal with flexible source ranges also with own data. This is needed for the clipboard between Calc and Impress
Diffstat (limited to 'xmloff/source/chart/transporttypes.cxx')
-rw-r--r--xmloff/source/chart/transporttypes.cxx46
1 files changed, 46 insertions, 0 deletions
diff --git a/xmloff/source/chart/transporttypes.cxx b/xmloff/source/chart/transporttypes.cxx
new file mode 100644
index 000000000000..f4734bfe68ea
--- /dev/null
+++ b/xmloff/source/chart/transporttypes.cxx
@@ -0,0 +1,46 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: transporttypes.cxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-05-22 16:08:55 $
+ *
+ * The Contents of this file are made available subject to
+ * the terms of GNU Lesser General Public License Version 2.1.
+ *
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2005 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ ************************************************************************/
+
+// MARKER(update_precomp.py): autogen include statement, do not remove
+#include "precompiled_xmloff.hxx"
+
+#include "transporttypes.hxx"
+
+bool operator < ( const tSchXMLIndexWithPart & rFirst, const tSchXMLIndexWithPart & rSecond )
+{
+ if( rFirst.first == rSecond.first )
+ return (static_cast< int >( rFirst.second ) < static_cast< int >( rSecond.second ));
+ return (rFirst.first < rSecond.first);
+}