Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Konsole
Commits
f9ef1886
Commit
f9ef1886
authored
May 06, 2007
by
Stephan Binner
Browse files
fix pedantic compilation
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=661619
parent
57f4af20
Changes
36
Hide whitespace changes
Inline
Side-by-side
src/Application.cpp
View file @
f9ef1886
...
...
@@ -56,7 +56,7 @@ Application::Application()
// check for compositing functionality
TerminalDisplay
::
setTransparencyEnabled
(
KWindowSystem
::
compositingActive
()
);
}
;
}
Application
*
Application
::
self
()
{
...
...
src/Application.h
View file @
f9ef1886
...
...
@@ -84,5 +84,5 @@ private:
MainWindow
*
_backgroundInstance
;
};
}
;
}
#endif //KONSOLEAPP_H
src/BookmarkHandler.h
View file @
f9ef1886
...
...
@@ -113,6 +113,6 @@ private:
QList
<
ViewProperties
*>
m_views
;
};
}
;
}
#endif // KONSOLEBOOKMARKHANDLER_H
src/ColorSchemeEditor.cpp
View file @
f9ef1886
...
...
@@ -134,7 +134,7 @@ void ColorSchemeEditor::setDescription(const QString& text)
}
void
ColorSchemeEditor
::
setTransparencyPercentLabel
(
int
percent
)
{
_ui
->
transparencyPercentLabel
->
setText
(
QString
(
"%1
\
%"
).
arg
(
percent
)
);
_ui
->
transparencyPercentLabel
->
setText
(
QString
(
"%1%"
).
arg
(
percent
)
);
qreal
opacity
=
(
100.0
-
percent
)
/
100.0
;
_colors
->
setOpacity
(
opacity
);
...
...
src/ColorSchemeEditor.h
View file @
f9ef1886
...
...
@@ -74,6 +74,6 @@ private:
ColorScheme
*
_colors
;
};
}
;
}
#endif // COLORSCHEMEEDITOR_H
src/EditProfileDialog.h
View file @
f9ef1886
...
...
@@ -34,7 +34,7 @@ class QAbstractButton;
namespace
Ui
{
class
EditProfileDialog
;
}
;
}
namespace
Konsole
{
...
...
@@ -215,6 +215,6 @@ public:
};
}
;
}
#endif // EDITSESSIONDIALOG_H
src/EditTabTitleFormatDialog.h
View file @
f9ef1886
...
...
@@ -29,7 +29,7 @@
namespace
Ui
{
class
EditTabTitleFormatDialog
;
}
;
}
namespace
Konsole
{
...
...
@@ -65,6 +65,6 @@ private:
static
const
int
_remoteElementCount
;
};
}
;
}
#endif // EDITTABTITLEFORMATDIALOG_H
src/Emulation.h
View file @
f9ef1886
...
...
@@ -265,6 +265,6 @@ private:
};
}
;
}
#endif // ifndef EMULATION_H
src/Filter.h
View file @
f9ef1886
...
...
@@ -374,5 +374,5 @@ private:
QList
<
int
>*
_linePositions
;
};
}
;
}
#endif //FILTER_H
src/History.h
View file @
f9ef1886
...
...
@@ -334,6 +334,6 @@ protected:
#endif
}
;
}
#endif // TEHISTORY_H
src/HistorySizeDialog.h
View file @
f9ef1886
...
...
@@ -84,6 +84,6 @@ private:
QSpinBox
*
_lineCountBox
;
};
}
;
}
#endif // HISTORYSIZEDIALOG_H
src/IncrementalSearchBar.h
View file @
f9ef1886
...
...
@@ -190,5 +190,5 @@ private:
QTimer
*
_searchTimer
;
};
}
;
}
#endif // INCREMENTALSEARCHBAR_H
src/KeyBindingEditor.h
View file @
f9ef1886
...
...
@@ -26,7 +26,7 @@
namespace
Ui
{
class
KeyBindingEditor
;
}
;
}
namespace
Konsole
{
...
...
@@ -57,6 +57,6 @@ private:
KeyboardTranslator
*
_translator
;
};
}
;
}
#endif //KEYBINDINGEDITOR_H
src/KeyboardTranslator.h
View file @
f9ef1886
...
...
@@ -374,7 +374,7 @@ inline KeyboardTranslator::State KeyboardTranslator::Entry::state() const
return
_state
;
}
}
;
}
Q_DECLARE_METATYPE
(
const
Konsole
::
KeyboardTranslator
*
)
...
...
src/MainWindow.h
View file @
f9ef1886
...
...
@@ -118,6 +118,6 @@ class MainWindow : public KXmlGuiWindow
QPointer
<
SessionController
>
_pluggedController
;
};
}
;
}
#endif // KONSOLEMAINWINDOW_H
src/ManageProfilesDialog.h
View file @
f9ef1886
...
...
@@ -33,7 +33,7 @@ class QStandardItemModel;
namespace
Ui
{
class
ManageProfilesDialog
;
}
;
}
namespace
Konsole
{
...
...
@@ -85,6 +85,6 @@ public:
const
QStyleOptionViewItem
&
option
,
const
QModelIndex
&
index
);
};
}
;
}
#endif // SESSIONTYPEDIALOG_H
src/Part.h
View file @
f9ef1886
...
...
@@ -84,6 +84,6 @@ private:
SessionController
*
_pluggedController
;
};
}
;
}
#endif // PART_H
src/ProcessInfo.cpp
View file @
f9ef1886
...
...
@@ -254,7 +254,7 @@ bool UnixProcessInfo::readProcessInfo(int pid , bool enableEnvironmentRead)
setParentPid
(
parentPid
);
return
true
;
}
;
}
ProcessInfo
*
ProcessInfo
::
newInstance
(
int
pid
,
bool
enableEnvironmentRead
)
{
...
...
src/ProcessInfo.h
View file @
f9ef1886
...
...
@@ -345,5 +345,5 @@ private:
QString
_command
;
};
}
;
}
#endif //PROCESSINFO_H
src/ProfileList.h
View file @
f9ef1886
...
...
@@ -60,6 +60,6 @@ private:
QActionGroup
*
_group
;
};
}
;
}
#endif
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment