summaryrefslogtreecommitdiff
path: root/library/CustomGrid.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:00:50 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:00:50 +0200
commit4ecfd41e36533d858c98d051ef70cab80e69e972 (patch)
treeca07d8745967d2c6a7123a5d32269cfbfaa7bd6c /library/CustomGrid.h
parent2.2 (diff)
downloadFreeFileSync-4ecfd41e36533d858c98d051ef70cab80e69e972.tar.gz
FreeFileSync-4ecfd41e36533d858c98d051ef70cab80e69e972.tar.bz2
FreeFileSync-4ecfd41e36533d858c98d051ef70cab80e69e972.zip
2.3
Diffstat (limited to 'library/CustomGrid.h')
-rw-r--r--library/CustomGrid.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/library/CustomGrid.h b/library/CustomGrid.h
index a71b985a..08ec5f55 100644
--- a/library/CustomGrid.h
+++ b/library/CustomGrid.h
@@ -6,6 +6,7 @@
#include "processXml.h"
#include <map>
#include <memory>
+#include <set>
class CustomGridTableRim;
class CustomGridTableLeft;
@@ -19,6 +20,7 @@ class CustomGridLeft;
class CustomGridMiddle;
class CustomGridRight;
+
namespace FreeFileSync
{
class GridView;
@@ -59,7 +61,7 @@ public:
CustomGridRight* gridRight,
const FreeFileSync::GridView* gridDataView);
- std::set<int> getAllSelectedRows() const;
+ std::set<unsigned int> getAllSelectedRows() const;
//set sort direction indicator on UI
typedef int SortColumn;
bgstack15