mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2024-11-22 18:23:08 +02:00
In C++11, it is no longer necessary to avoid ">>" in nested templates
This commit is contained in:
parent
891525aa94
commit
e5a432cb6b
@ -21,7 +21,7 @@ public:
|
|||||||
void handleTS();
|
void handleTS();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::vector<std::unique_ptr<IconButton> > buttons;
|
std::vector<std::unique_ptr<IconButton>> buttons;
|
||||||
GMenu2X *gmenu2x;
|
GMenu2X *gmenu2x;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ private:
|
|||||||
bool close, ok;
|
bool close, ok;
|
||||||
std::string title, text, icon;
|
std::string title, text, icon;
|
||||||
short curKeyboard;
|
short curKeyboard;
|
||||||
std::vector< std::vector<std::string> > keyboard;
|
std::vector<std::vector<std::string>> keyboard;
|
||||||
std::vector<std::string> *kb;
|
std::vector<std::string> *kb;
|
||||||
int kbLength, kbWidth, kbHeight, kbLeft;
|
int kbLength, kbWidth, kbHeight, kbLeft;
|
||||||
SDL_Rect kbRect;
|
SDL_Rect kbRect;
|
||||||
|
@ -59,7 +59,7 @@ private:
|
|||||||
int iSection, iLink;
|
int iSection, iLink;
|
||||||
uint iFirstDispRow;
|
uint iFirstDispRow;
|
||||||
std::vector<std::string> sections;
|
std::vector<std::string> sections;
|
||||||
std::vector< std::vector<Link*> > links;
|
std::vector<std::vector<Link*>> links;
|
||||||
|
|
||||||
uint linkColumns, linkRows;
|
uint linkColumns, linkRows;
|
||||||
|
|
||||||
|
@ -27,8 +27,8 @@
|
|||||||
|
|
||||||
#include "inputmanager.h"
|
#include "inputmanager.h"
|
||||||
|
|
||||||
typedef std::unordered_map<std::string, std::string, std::hash<std::string> > ConfStrHash;
|
typedef std::unordered_map<std::string, std::string, std::hash<std::string>> ConfStrHash;
|
||||||
typedef std::unordered_map<std::string, int, std::hash<std::string> > ConfIntHash;
|
typedef std::unordered_map<std::string, int, std::hash<std::string>> ConfIntHash;
|
||||||
|
|
||||||
class case_less {
|
class case_less {
|
||||||
public:
|
public:
|
||||||
|
Loading…
Reference in New Issue
Block a user