Browse Source

cleanup

pull/974/head
krepa098 11 years ago
parent
commit
9cb7ba06ed
  1. 6
      src/chatlog/chatline.cpp
  2. 1
      src/chatlog/chatline.h

6
src/chatlog/chatline.cpp

@ -109,12 +109,6 @@ void ChatLine::selectionCleared()
c->selectionCleared(); c->selectionCleared();
} }
void ChatLine::selectionCleared(int col)
{
if(col < static_cast<int>(content.size()) && content[col])
content[col]->selectionCleared();
}
int ChatLine::getColumnCount() int ChatLine::getColumnCount()
{ {
return content.size(); return content.size();

1
src/chatlog/chatline.h

@ -71,7 +71,6 @@ public:
void addToScene(QGraphicsScene* scene); void addToScene(QGraphicsScene* scene);
void setVisible(bool visible); void setVisible(bool visible);
void selectionCleared(); void selectionCleared();
void selectionCleared(int col);
int getColumnCount(); int getColumnCount();
int getRow() const; int getRow() const;

Loading…
Cancel
Save